scmeeker Posted July 11, 2010 Share Posted July 11, 2010 I have a drop down menu option on a form. After a user makes a selection, it goes to the next page for confirmation with the option to edit their information. On the edit page, I would like the drop down menu to go to the selection they chose. Anyone have a suggestion on how to incorporate the PHP code with this? Here is the drop down code I'm using with it: <select name="location" class="blackfont"> Link to comment https://forums.phpfreaks.com/topic/207442-updating-with-drop-down-menu/ Share on other sites More sharing options...
Pikachu2000 Posted July 11, 2010 Share Posted July 11, 2010 Post the code that builds the list of options. Link to comment https://forums.phpfreaks.com/topic/207442-updating-with-drop-down-menu/#findComment-1084539 Share on other sites More sharing options...
scmeeker Posted July 11, 2010 Author Share Posted July 11, 2010 Here is the code that builds the drop down menu: <select name="location" class="blackfont"> <option value="US">US</option> <option value="CANADA">CANADA</option> </select> Link to comment https://forums.phpfreaks.com/topic/207442-updating-with-drop-down-menu/#findComment-1084542 Share on other sites More sharing options...
Pikachu2000 Posted July 11, 2010 Share Posted July 11, 2010 Assuming this isn't already echoed from within PHP, and the form uses POST method . . . <select name="location" class="blackfont"> <option value="US"<?php if( $_POST['location'] == 'US' ) { echo ' selected="SELECTED"'; } ?>>US</option> <option value="CANADA"<?php if( $_POST['location'] == 'CANADA' ) { echo ' selected="SELECTED"'; } ?>>CANADA</option> </select> Link to comment https://forums.phpfreaks.com/topic/207442-updating-with-drop-down-menu/#findComment-1084544 Share on other sites More sharing options...
scmeeker Posted July 11, 2010 Author Share Posted July 11, 2010 Thank you! Link to comment https://forums.phpfreaks.com/topic/207442-updating-with-drop-down-menu/#findComment-1084548 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.