I would like to use a multiple select list instead of checkboxes for form entry. I am having trouble finding a nice way of finding out which options are selected, as the url when the form is submitted is along the lines of:
auto.php?user=mjc&user=htu&user=njs
as opposed to the fomat auto.php?mjc=on&htu=on that i am more used to with checkboxes, which i would normally deal with in the following way:
$num = pg_NumRows ($result);
for ($i=0; $i<$num; $i++) {
$user = pg_result($result, $i, "initials");
if ( ($$user) && ($$user == "ON") ) {
Is there a similar way of dealing with the mutiple select list output?