hey guys, I've scoured the internet and found no resolution to my problem :-(.
Basically I'm trying to add members (read from a database) to an event. I'm using checkboxes for the admin to select multiple users to add to the event. (Note: the <form> is further up the code).
while($row = mysql_fetch_array($result,MYSQL_ASSOC))
{
echo "<tr class='even'><td>".$row[name]."</td><td><input name='members[]' value='".$row[id]."' type='checkbox' /></td>";
}
echo "</table>";
echo "<p><input type='submit' value='Complete Event' id='submit' /></p>";
echo "</form>";
The $row[id] are numbers, and what I need are these numbers in an array on the next page so I can use them. I just can't figure out how to get these numbers.
Any idea what syntax I'll need to obtain each item from the array?
thanks a lot
Basically I'm trying to add members (read from a database) to an event. I'm using checkboxes for the admin to select multiple users to add to the event. (Note: the <form> is further up the code).
while($row = mysql_fetch_array($result,MYSQL_ASSOC))
{
echo "<tr class='even'><td>".$row[name]."</td><td><input name='members[]' value='".$row[id]."' type='checkbox' /></td>";
}
echo "</table>";
echo "<p><input type='submit' value='Complete Event' id='submit' /></p>";
echo "</form>";
The $row[id] are numbers, and what I need are these numbers in an array on the next page so I can use them. I just can't figure out how to get these numbers.
Any idea what syntax I'll need to obtain each item from the array?
thanks a lot