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'?

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.