Entry
How can I make multiple selections from a listbox that read values from MySQL
Nov 24th, 2001 15:32
Jake Edstrom, Jonathan Sharp, Peter Lagland, Onno Benschop,
for your select field, set the name to "variable[]" and in PHP
$variable will be an array of selections, as far as building the list
from mysql... just loop through a table with your fields, and print an
option tag.
Additional note:
In order to be able to make multiple simultaneous selections from a
select tag you must specify the mulitple attribute of the
select tag.