Hi,
I have the following html form:
<form name="myFrm" action="myphp.php" method="get">
<input type="checkbox" name="myname" value="1">1st<br>
<input type="checkbox" name="myname" value="2">2nd
...
<input type="submit">
</form>
I allow people select multipule checkboxes. When I use $HTTP_GET_VARS['myname'] to access the data, I can only get one value. How can I get mulitpule values when people have selected several checkboxes?
Thanks,
Michael