Please forgive my ignorance in advance.
I have a form like this:
Location (name: location) w/ a drop down menu that includes "None" as one of the values.
Location if None: (name: other) is a text box to type in another location.
On my form_results.php page I'd like to use "other" if "location" is None.
I've used this and several other variations w/ no success:
if ($location == "None")
$other = $location;
It just keeps inserting "None" in the database. I know this is simplistic, what am I doing wrong? Thank you in advance for your help.