Im using a drop down menu in a contact form,
option 1 : Worldwide Cover
option 2 : European Cover
But that form is inserted into a DB, which is then read by ?id,
is there any way to have a value for each dropdown, for example if they select "option one" it will input the terms for worldwide cover to the DB,
if they select option 2 it will input terms for europe into the DB
<option value='Worldwide Cover'>Worldwide Cover</option>Or, if those values come from a database and you're inserting into that database, just insert the numeric values, since you can JOIN to query them. That's what database normalization is all about.