Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7553849
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:10:27+00:00 2026-05-30T11:10:27+00:00

I have a dropdown box which is populated from a mysql table. When viewing

  • 0

I have a dropdown box which is populated from a mysql table.

When viewing the box, the order of the options is the same as in the table e.g. a,b,c,d

I have a variable, and would like the dropdown box to be preset to that variable.

FOr example, if the variable was C, the dropdown box would automatically have C selected. The user could then change it if they wanted to.

This is the code for the dropdown box.

           <select name ='action'>
                <?php

                    $query = "SELECT action FROM actions";

                    $result = mysql_query($query);

                    while($myrow = mysql_fetch_array($result)) {
                        $action = $myrow['action'];
                        echo "<option value='$action'>$action</option>\n";
                    }       
                ?>
            </select>

I have tried adding this line above the query….

echo "<option value='$variable'>$variable</option>\n";

…however this just adds the variable as an option to the top of the list. e.g. the list a,b,c,d and when I add the above line with the variable set to B, the dropdown displays b,a,b,c,d.

Could anyone tell me how to properly preset the displayed option? Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T11:10:29+00:00Added an answer on May 30, 2026 at 11:10 am

    Try this code:

           <select name ='action'>
                <?php
                    $default = 'default_value';
                    $query = "SELECT action FROM actions";
    
                    $result = mysql_query($query);
    
                    while($myrow = mysql_fetch_array($result)) {
                        $action = $myrow['action'];
                        echo "<option value='$action'".($action == $default ? ' selected="selected"' : '').">$action</option>\n";
                    }       
                ?>
            </select>
    

    You initially set the default value you want preset. You then check with each row iteration whether the action is the default.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a dropdown box in my view which is populated with objects from
I have a dropdown box which is populated through MySQL: echo <form>;<br> echo Please
i have a drop down list which is populated dynamically from database table i.e
I have a dropdown box which is used to select a user from a
I would like to be able to insert a dropdown box where I have
I have a PHP registration that calls a mysql db for a dropdown box.
I have two columns from a table; fromid and toid , which contain the
I currently have a dropdown box which contains a list of all of the
I have a combo box in ext js , which is dynamically populated. Nothing
I have a dropdown box in my GUI which shows the contents of an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.