Jump to content

[SOLVED] Retaining drop down box information on reload


rickphp

Recommended Posts

I am currently making a php contact form, and i have various validation checks being ran, and when an error is found the data the user inputted was being lost because the page is refreshing. I managed to resolve the issue by using the coding below for input fields but I can't manage to make drop down boxes retain the selected option when the page is refreshed, any help please?

 

<?php
session_start();
?>

 

  if ($submit) {

  foreach($_POST as $key=>$value){
    $_SESSION[$key]=$value;
  }

 

Here is an example of how the data is retained in a normal input field.

 

<input class="form" name="name1" type="text" size="26" maxlength="20" value="<? print("$_SESSION[name1]");?>" />

 

But I can't figure out how to do the same for the drop down boxes? Below is the html code for the drop down box. Any help please?

 

<select class="form"  name="customer"><option value="Select One">Select One</option><option value="Yes">Yes</option><option value="No">No</option></select>

 

Thank you!

Link to comment
Share on other sites

<select class="form"  name="customer">
   <option value="Select One">Select One</option>
   <option value="Yes" <?php if($_POST['customer']=='Yes') { echo "selected=\"selected\""; } ?>>Yes</option>
   <option value="No" <?php if($_POST['customer']=='No') { echo "selected=\"selected\""; } ?>>No</option>
</select>

 

Link to comment
Share on other sites

<select class="form"  name="customer">
  <option value="Select One">Select One</option>
  <option value="Yes" <?php if($_POST['customer']=='Yes') { echo "selected=\"selected\""; } ?>>Yes</option>
  <option value="No" <?php if($_POST['customer']=='No') { echo "selected=\"selected\""; } ?>>No</option>
</select>

 

Perfect, works a treat! Thank you!

Link to comment
Share on other sites

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.