I have a dynamically created drop down list box, it has a bunch of numbers as values.
while($row = mysql_fetch_object($result))
{
echo "<option value=\"future_id\">";
echo $row->issue_id;
echo "</option>";
}
i want to be able to pull the selected value from it. like say, echo $future_id, and if the user had selected '21', then $future_id == 21. Any ideas?
while($row = mysql_fetch_object($result))
{
echo "<option value=\"future_id\">";
echo $row->issue_id;
echo "</option>";
}
i want to be able to pull the selected value from it. like say, echo $future_id, and if the user had selected '21', then $future_id == 21. Any ideas?