As said by Plutarck use make change as
<select mae=user[ ] multiple>
|---
</select>
then use this thing
foreach ($user as $show_key => $show_value) {
echo "$show_value <br>";
}
this shall give u the values on new lines
enjoy
cheers :-)
mandar@freeos.com
Plutarck wrote:
On the select name append it such as:
name="user"
changes to:
name="user[]"
Use either var_dump() or print_r() on $user to see if data is successfully being submitted.
If it is then get rid of the var_dump/print_r execution, and you're all set.