Forum Moderators: open
<select name="options" onChange="location=this.options[this.selectedIndex].value">
<option selected value="0">Please Select...</option>
<option value="0">----------------------</option>
<option value="index.php">Homepage</option>
<option value="admin.php">Admin Area</option>
<option value="contact.php">Contact Us</option>
</select>
If someone selects 'Homepage' then that becomes the selected value and so on.
So my question is, how do I change the code so that if someone selects something with a 0 value on another page it returns false?
Thank you!