Retriving List Box information

A

Anonymous

Guest
ok for u fellow PHP GuRu's out there I have a quick question... I have a List Box...

It allows the user to select multiple people. And then i submit the page to proc_users.php using POST method... now im a lil rusty @ php and i cant remember how to retrieve all the users that are selected. the name of my listbox is emp and $_POST["emp"] only retrieves the LAST person selected. Anyone help?
 
If you put [] after the name, PHP will treat it as an array:

Code:
<input name="emp[]" ... />
 
Back
Top