Hi!
I have a problem getting values from form field in PHP
form looks like
<form ...>
<input type="checkbox" name="id" value="1">
<input type="checkbox" name="id" value="2">
etc...
</form>
Now, when I submit, the value of count($HTTP_POST_VARS['id']) is not 2 - Why I do not get all the fields into array???
help me asap