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"> Quote 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. Quote 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> Quote 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> Quote 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! Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.