> Now, I want to know which numbers have been checked by the player.
> I have a :
> "input name="Grid1" type="checkbox"
> for the first grid. Grid2 for the grid #2...

<input name="Grid1[]" type="checkbox" value="whatever" />
<input name="Grid2[]" type="checkbox" value="whatever" />

if the user checks any Grid1[] boxes then $_POST['Grid1'] will be an
array and so on.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to