Guest User

Untitled

a guest
Feb 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. function selectCountry($country) {
  2. if($_SESSION['user_country'] == $country) {
  3. echo ' selected';
  4. }
  5. }
  6.  
  7. <option value="United Kingdom" ' . selectCountry("United Kingdom") . '>United Kingdom</option>
  8. <option value="United States" ' . selectCountry("United States") . '>United States</option>
  9. <option value="United States Minor Outlying Islands" ' . selectCountry("United States Minor Outlying Islands") . '>United States Minor Outlying Islands</option>
  10. <option value="Uruguay" ' . selectCountry("Uruguay") . '>Uruguay</option>
  11.  
  12. function selectCountry($country) {
  13. if($_SESSION['user_country'] == $country) {
  14. return ' selected';
  15. } else {
  16. return '';
  17. }
  18. }
Add Comment
Please, Sign In to add comment