Ok im really stumped. how do you retreve checkbox data from the submited page
ie
I have the checkboxes made form a sql querry
<INPUT TYPE=\"CHECKBOX\" name=\"players_id[]\" value=\"$a_row[0]\">
obviously the [0] holds various players_id.
so when it passes it I will get a load of
player_id=1&player_id=2&player_id=5
if they are checked of course.
How do I collect them on the next page. I have tried
foreach ($player_id as $val)
{
echo "$val<br>";
}
but i get nothing
please help this one is driving me maddd
lee