Simpliest way to remember DropDown selection?

kristinaratina

New Member
I have; \[code\]<form method="post" action="search.php"> <select name="country"> <option value="">Select Country</option> <option value="http://stackoverflow.com/questions/12782116/Afghanistan">Afghanistan</option> <option value="http://stackoverflow.com/questions/12782116/Albania">Albania</option> </select></form>\[/code\]And then in search.php \[code\]$country = $country\[/code\] query MySQL table for column that's %like% country.I wonder what is the simplest way to remember dropdown selection after someone makes pick up country?
 
Back
Top