Jump to content

updating with drop down menu


scmeeker

Recommended Posts

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

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.