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.
<input type="checkbox" id="one" name="form[age[]]" value="1"/><label for="one">0 to 12 months</label> 

How do I reference the name in PHP once it has been submitted using POST. I am trying to collect all the checkbox values and then implode age[], but I need to put this in a form[] for form validation.

When i print_r[$_POST['form']['age'], it displays Notice: Undefined index: age

share|improve this question

3 Answers

up vote 0 down vote accepted

You should use name="form[age][]" for every checkbox with age value, and then after you send those values to PHP they will be available as an array $_POST['form']['age'].

Example:

<input type="checkbox" name="form[age][]" value="1"/>
<input type="checkbox" name="form[age][]" value="2"/>
<input type="checkbox" name="form[age][]" value="3"/>

will result an array in PHP like:

$_POST['form']['age'][0]; // = 1
$_POST['form']['age'][1]; // = 2
$_POST['form']['age'][2]; // = 3
share|improve this answer

Simply use the key form and the key age in form:

$age = $_POST['form']['age'];
$imploded = implode(',', $age);

The value of the HTML-Attribute name is the key in $_POST, so form is $_POST['form']

Edit: The syntax of your name value is wrong, use form[age][] instead.

share|improve this answer
its not working. in that age[] only displays the last checked box. am i input the name= wrong? – Lap Ming Lee Jul 17 '12 at 7:45
use form[age][] instead – Besnik Jul 17 '12 at 7:47

I think you want this:

<input type="checkbox" id="one" name="form[age][]" value="1"/>
<input type="checkbox" id="one" name="form[age][]" value="2"/>
.
.
<input type="checkbox" id="one" name="form[age][]" value="12"/>

<?
$implode = implode(',', $_POST['form']['age']);
?>
share|improve this answer

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.