473,785 Members | 2,816 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Handling Multiple check boxes

I have a PHP generated page which displays X many records. Each record has
a checkbox preceding it. The user checks several checkboxes, and hits a
delete button. All the corresponding records will be deleted.

But I'm running into difficulty...
Right now the NAME property of each check box is the primary key of the
corresponding record. Hence if I know which checkboxes are checked, I
simply use DELETE using the NAME value.

Generally speaking, how do I get the server side to see which check boxes
were checked?

The check box names may not be sequential, if any records have been deleted
previously, and the first check box might be a number greater than 0.

Is there an easy mechanism to do this? Some kind of built in cnotrol array
allowing me to loop over every check box that was on the form submitted?

I could store the last and first checkbox number in a hidden input, then
loop starting/ending at those values, but that may loop over a lot of
controls that do not exist.
Thoughts?

<Ade
--
Adrian Parker. Ordained priest. <ad***********@ sympatico.ca>

"A society that views graphic violence as entertainment ...should not be
surprised when senseless violence shatters the dreams of it's youngest and
brightest..." - Ensign (March 2004)
Jul 17 '05
13 3568
On Thu, 29 Apr 2004 22:14:59 +0200
Jan Pieter Kunst <de*****@cauce. org> wrote:
In article <Y0************ *******@news20. bellglobal.com> ,
"Adrian Parker" <ad***********@ NOSPAMsympatico .ca> wrote:
Make the "name" attribute an array.

<input type="checkbox" name="checkbox_ id[1]" value="a" />
<input type="checkbox" name="checkbox_ id[3]" value="b" />
<input type="checkbox" name="checkbox_ id[56]" value="c" />
<input type="checkbox" name="checkbox_ id[145]" value="d" />

If a and c are checked, then after submitting
$_REQUEST['checkbox_id'] is an array containing this: [1] => a
[56]=> d.


(Should be [56] => c, sorry)
How can I loop through it without knowing how many elements it
holds?


That's what foreach() is for! See
<http://nl.php.net/manual/en/control-structures.fore ach.php>.

Assuming that the form was submitted with method="post":

foreach($_POST[checkbox_id] as $record_id => $value) {

do_something_in _database($reco rd_id);
...
}


You can also do

reset($array);

while( list($key,$val) = each( $array ) ) {

echo $key . ' => ' . $val;

}
Jul 17 '05 #11

"Jan Pieter Kunst" <de*****@cauce. org> wrote in message
news:de******** *************** ****@news1.news .xs4all.nl...
In article <qk************ *******@news20. bellglobal.com> ,
"Adrian Parker" <ad***********@ NOSPAMsympatico .ca> wrote:
This seems to work:

foreach(array_k eys($_POST["checkBox_Delet e"]) as $key)
{
if ($deleteCount == 0)
{
$deleteThese = "'" . $key . "'";
$deleteCount += 1;
} else {
$deleteThese .= ", '" . $key . "'";
}
}
This look good to you?


If you need the number of checked checkboxes, it is faster to get that
like this:

$deleteCount = count($_POST['checkBox_Delet e']);


Nah, the deleteCount is just used to see if it's the first element to be
added to the string deleteCount.

deleteCount is building a single quote and comma delimited string that will
be used as argument for a mySQL IN function.

Adrian
Jul 17 '05 #12
In article <1C************ *******@news20. bellglobal.com> ,
"Adrian Parker" <ad***********@ NOSPAMsympatico .ca> wrote:
Nah, the deleteCount is just used to see if it's the first element to be
added to the string deleteCount.

deleteCount is building a single quote and comma delimited string that will
be used as argument for a mySQL IN function.


Ah, I see. In that case this will build the querystring in less code:

$querystring = "DELETE FROM ... WHERE ... IN ('" . join("','",
array_keys($_PO ST['checkbox_delet e']) . "')";

JP

--
Sorry, <de*****@cauce. org> is een "spam trap".
E-mail adres is <jpk"at"akamail .com>, waarbij "at" = @.
Jul 17 '05 #13

"Jan Pieter Kunst" <de*****@cauce. org> wrote in message
news:de******** *************** ****@news1.news .xs4all.nl...
In article <1C************ *******@news20. bellglobal.com> ,
"Adrian Parker" <ad***********@ NOSPAMsympatico .ca> wrote:
Nah, the deleteCount is just used to see if it's the first element to be
added to the string deleteCount.

deleteCount is building a single quote and comma delimited string that will be used as argument for a mySQL IN function.


Ah, I see. In that case this will build the querystring in less code:

$querystring = "DELETE FROM ... WHERE ... IN ('" . join("','",
array_keys($_PO ST['checkbox_delet e']) . "')";


Cool, thanks.
Adrian
Jul 17 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1723
by: Pax S | last post by:
I need a button that will check (make true) two check boxes (fields) For the record that has the focus (the record on the form that I am presently looking at). The two check boxes would be like a "sold" check box and an "add to report" check box (for print out). Also as part of this button, I would like for it to enter a date into a field such as a "date sold" field. That should be fairly simple and I could probably figure out how to do...
1
3101
by: Jim in Arizona | last post by:
I'm having dificulty figuring out how to process multiple check boxes on a web form. Let's say I have three check boxes: cbox1 cbox2 cbox3 The only way I can think of to code the possibilities is something like:
14
1600
by: Xero | last post by:
Hello. I am using Visual Studio .NET (Academic Edition) to write a VB program. My computer is running Win XP Pro. I am writing a calculator and requires users to enter two numbers. After entering the numbers, they should click a button called 'Display Results'. How can I display a dialog box prompting the users to check their entry if they left any of the boxes empty? I have tried the .IsNaN function but in vein. Thanks.
7
3114
by: Siv | last post by:
Hi, I have an MDI application that uses a generic "ShowPage" routine in a module that is called when I want to display a child form. The basic idea is that in the module I have declared each form as follows: Friend F0 As frmMain Friend F1 As frmStart Friend F2 As frmSearch Then in my ShowPage routine (which is passed a string "pageToShow" which is the name of the form I wish to open), I first check to see if we already have an instance...
10
15980
by: Jim in Arizona | last post by:
I'm having dificulty figuring out how to process multiple check boxes on a web form. Let's say I have three check boxes: cbox1 cbox2 cbox3 The only way I can think of to code the possibilities is something like:
6
6899
by: Harshpandya | last post by:
Hi all, I am working on the form in which you fill out the whole PHP form and e mail that details to someone. It is working fine. But now i want to send the same form to be sent to different people and user should be able choose the check boxes to whom they want to send e mail to. I write some code simple If else conditions but i think i am making some mistakes. Because when i tried - it is not sending them e mails. Here is my code. I...
3
2699
by: Zabto | last post by:
I created an array of 8X5 boxes to represents pixels in a character. Each box is a custom UserControl of a fixed size which is filled black if it's activated, or white if it's not. I wanted to change multiple boxes with a click and drag. On mouse down I toggle the value of the current box and then set two static variables for the class: ButtonDown = true; Activate = (true or false, depending upon which action was just taken.) The...
6
4677
by: woodey2002 | last post by:
Hi Everyone. Thanks for your time. I am trying to create a search form that will allow users to select criteria from multiple multi select boxes. So far i have managed to achieve a search option for 2 list boxes:- county and nationality, while trying to add a third multi select list box for qualifications search is where i encounter my problem. I've copied the working code from my working list boxes, however it cant seem to pick up the...
1
6799
by: woodey2002 | last post by:
Hi Everyone and many thanks for your time.. I am trying to begin access and a bit of VBA i am enjoying it but I have a annoying problem I just can’t get any where on. My databse mostly includes bits of code for different examples. I have one last thing to finish. I am trying to create a search form that will allow users to select criteria from multiple sources eg ,multi select list boxes , combo boxes. I have a subform showing all the...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10329
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10152
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10092
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8974
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7500
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
3650
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.