Jump to content

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>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.