Hi,
I want to select multiple records from Comb box. My code is like below:
echo (\"<select name=\\"Name[]\\" multiple size=10>\");
If (isset($result)) {
while ($row = mysql_fetch_array($result))
{
echo (\"<option>\" .$row[\"Name\"]. \"\n</option>\"); }
}
when I choose one or multiple records in Comb, nothing would be retrieved in next page.
If I just use \" <select name=\\"Name\\" multiple size=10>\", whatever I choose, only get last record\'s results in next page.
Do you know what is wrong? How to obtain multiple selection in PHP?