Try:
<input type=checkbox name='aaa[]' value=1> ....
/frank
2005-03-04 kl. 04.06 skrev tx:
i create the html form as below
<input type=checkbox name=aaa value=1> <input type=checkbox name=aaa value=2> <input type=checkbox name=aaa value=3> <input type=checkbox name=aaa value=4>
and i receive the form data in php file as below:
global $aaa; print_r($aaa);
this action only echo "4" not the total array in array format,why?