|
|
| Welcome to the Mac Forums forums. Please read the FAQ if you have questions. Register to participate. |
|
|||||||
| TouchArcade.com - iPhone Game Reviews and News |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
|
|
#1 |
|
macrumors 6502a
|
PHP Checkboxes
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 |
|
|
|
|
|
#2 |
|
macrumors 65816
Join Date: Dec 2007
Location: Falls Church, Va.
|
When the form is submitted, if you used post method:
$_POST['members'] If get method: $_GET['members'] Each will be an array, so to iterate through, one of million ways, but easy: PHP Code:
-jim
__________________
Jim, Sr. Web Developer If you ever want to know who you true friends are, ask them to either paint or move furniture. |
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|