for example, i have a menu list like this
<form method="post" action="nextpage.php">
<select name="area">
<option value="101">alaska</option>
<option value="107">illinois</option>
</select>
</form>
in the next page, i want get both the value and label of the menu list "area", how?
$area will just give me the value 101. i cannot get the label alaska.
thanks.
hui