vote up 1 vote down star

Hello!

I have three checkboxes like ch[0], ch[1] and ch[3] (sometimes i have more, or less, it's dinamic) and in PHP i want to get the unselected items also, like this: 0=yes,1=no,3=yes and so on.

Can I solve this somehow?

flag

75% accept rate

4 Answers

vote up 3 vote down check

A common way is to put a hidden form field beside the checkbox and then via javascript set the value for that when the checkbox is changed.

EDIT: You don't need javascript. But the hidden field is a way to go, when you don't neccessarily know, on the page that is posted to, how many checkboxes there are on the requesting page. Check out: http://www.felgall.com/xtutf06a.htm

link|flag
2  
Well, you actually don't need the scripting it seems: felgall.com/xtutf06a.htm – asgerhallas Nov 8 at 19:34
Edited the post to include the link from my previous comment. – asgerhallas Nov 8 at 19:40
vote up 1 vote down

Unselected checkboxes are not being submitted. So you can only determine the unselected checkboxes by determining the set of all available checkboxes minus the selected checkboxes.

link|flag
vote up 1 vote down

Why do you need the unselected ones if you have both the complete list and the selected ones in the server side? Just extract the unselected ones from the complete list by filtering the selected ones out.

link|flag
It's complicated to explain, but asgerhallas's solution was the easiest to make it quick. – Gero Nov 8 at 19:47
vote up 0 vote down

You can do this on HTML:

<input type="hidden" name="ch[0]" value="no">
<input type="checkbox" name="ch[0]" value="yes">
...
<input type="hidden" name="ch[5]" value="no">
<input type="checkbox" name="ch[5]" value="yes">

And check it the regular way on PHP:

<?php
  $ch = $_REQUEST['ch'];
  //then use $ch[0], $ch[1], ..
?>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.