Is there any way of using the label of a combo box in PHP? Here's the code I have:
<select name="position">
<option value="0">Customer Service</option>
<option value="0">Payment Services</option>
<option value="0">BICS</option>
<option value="0">Agent Support</option>
<option value="1">Tier 2</option>
<option value="2">Manager</option>
</select>
The values in this combo box indicate the level of the user to determine what restrictions are imposed on them in the application. Is there any way I can use the text between the tags as well? I need that to repopulate the form fields later.
Thanks in advance.