Hello,
I am trying to get the value I selected to show in the dropdown menu. So if refreshed the user will not have (–Select Country–) appear again when refreshed it will say (USA) or something. Once I select the value it will update the database. I just want it to show that on the front end to.
Here is what I have:
[php]
Country
profile
UK
AUS
GER
USA
[/php]
It does not work though.
profile
It also connects to another page which is;
[php]
$TMPL[‘currentName’] = $request[4]; $TMPL[‘currentEmail’] = $request[3]; $TMPL[‘currentCountry’] = $request[22];
[/php]
please help thanks.