gettig all values from a multi-selectable listbox
Posted: Mon Jan 21, 2008 4:32 pm
how I can get all values from a multiple-selectable listbox? What I tried doesn't work.
Code: Select all
if(isset($_POST['Upload']))
{
for($i=0; $i < count($_POST['select']); $i++)
echo $_POST['select'][$i] . '<br>';
}