what is the best way to get the selected item from dropdown menu?
My dropdown menu is generated inside while loop if that matters :)
P.s. before you down-vote...I tried a couple of techniques I found on google and on this website.
Here is example of my dropdown menu:
<select id="select1">
<?php
$id = 0;
while ($row = mysql_fetch_row($result)) {
echo "<option value=$id>$row[0]</option>";
$id++;
}
?>
</select>
name– Dale Dec 18 '12 at 12:35"<option value=$id>$row[0]</option>"with'<option value="' . $id . '">' . $row[0] . '</option>'and name your select as Dale says – slash197 Dec 18 '12 at 12:37