Hi,
I have some checkboxes which are generated by a loop, my question is, after I submit the form how can I see which of them were checked , since they have the same name.
This is the code:
$rezultat = mysql_query($cerereSQL);
while($rand = mysql_fetch_array($rezultat)) {
echo "<input type='checkbox' name='membrii' />".$rand["id"] ." ".$rand["nume"]." ".$rand['prenume']."<br />";
}