Jump to content

Trying to preserve values of drop down menus after Submit...


AdrianRobinson

Recommended Posts

I'm simply trying to set up a form where, if when a user clicks 'Submit', and then 'Back', the values from the form are preserved. My question is, how do I preserve the values of drop down menus. The following is a snippet of my code:

 

<select name="dropdown_dept" id="dept_list">
<option value=0><?php echo "Please select one..."?></option> 
<?php
    $dropdown_dept = "select dept_name from departments";
    $result_dept = $db_conn->query($dropdown_dept);
      
    if (!$result_dept)
    {
      echo '<p>Unable to get department data.</p>';
      return false;
    }
  
    for($i=0; $i<$result_dept->num_rows; $i++)
    { 
      $app_name_row = $result_dept -> fetch_array();
      ?>
        <option><?php echo($app_name_row[0]); ?></option> 
      <? }

      ?>
      </select>

 

 

Above is where I have set up a drop down menu of departments. Given that code, how can I preserve the department name after a user clicks 'Submit'?

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.