Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know I can see if a checkbox is selected with something like

if (isset($_POST['option1']))

But if I have like 5 checkboxes, how can I immediately see which ones are selected? I have do to an if statement to all of them?

share|improve this question
2  
Could you explain a bit more? What are you trying to do? some code should be there – Positive Jun 8 '11 at 10:10

4 Answers

up vote 1 down vote accepted

Check them within an iteration.

for($i=0; $i<5; $i++)
   if (isset($_POST['option'.$i]))
   {
        //do stuff...
   }
share|improve this answer

For a checkbox with the same name use square brackets i.e.

<input type="checkbox" name="option[]" value="1" /> Option 1
<input type="checkbox" name="option[]" value="2" /> Option 2
<input type="checkbox" name="option[]" value="3" /> Option 3
<input type="checkbox" name="option[]" value="4" /> Option 4
<input type="checkbox" name="option[]" value="5" /> Option 5

Then $_POST['option'] will be an array of values ticked.

share|improve this answer

If you have something like this:

<input type="checkbox" name="options[]" value="option1">option1
<input type="checkbox" name="options[]" value="option2">option2
<input type="checkbox" name="options[]" value="option3">option3

in php, $_POST["options"] will be an array of the selected options

foreach($_POST['options'] as $opt) {
  echo "selected option: $opt <br />";
}

you could also use array_flip(), so the array keys are the option values...

share|improve this answer
-1 No it won't. – Lightness Races in Orbit Jun 8 '11 at 10:15
my bad, forgot something essential, adding [] – J.C. Inacio Jun 8 '11 at 10:17
guess you are confused with radio buttons – claarman Jun 8 '11 at 10:17
Correct. Your answer is now identical to @fire's. – Lightness Races in Orbit Jun 8 '11 at 10:18

For a given form:

<select name="foo">
   <option value="opt1" selected="selected">bar</option>
   <option value="opt2">whatever</option>
 </select>

<?php echo $_POST['foo'] ?> will print out "opt1".

share|improve this answer
-1 This is not a checkbox. – Lightness Races in Orbit Jun 8 '11 at 10:13
Right, my mistake! – patapizza Jun 8 '11 at 10:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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