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 8598477
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:09:34+00:00 2026-06-12T01:09:34+00:00

<form method=get action=index.php> <select name=choice size=1 onchange=this.form.submit()> <option value=a>a</option> <option value=b>b</option> <option value=c>C</option> </select></form>

  • 0
<form method="get" action="index.php">
<select name="choice" size="1" onchange="this.form.submit()">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">C</option>
</select></form>

The code above displays a dropdown menu of options, such as a, b, or c, the user can click on. After the user clicks on a, b, or c from the drop down menu, that option is submitted in the form, and the page reloads with a new $_GET variable “choice” defined as a, b, or c. I want the option that the user last selected to now be the default selected option listed. For example, after the user clicks on “b” from the dropdown menu, “b” shows up as selected on the drop down menu list. What’s the best way to accomplish this?

  • 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-06-12T01:09:35+00:00Added an answer on June 12, 2026 at 1:09 am

    Here you go:

    <?php
    
        if (isset($_REQUEST['choice'])) {
    
            $selected_choice = $_REQUEST['choice'];
    
        }
        else {
    
            $selected_choice = "none";
    
        }
    
    ?>
    
    <html>
    <head>
    </head>
    <body>
    
    <form method="get" action="">
        <select name="choice" size="1" onchange="this.form.submit()">
            <option value="a" <?php if($selected_choice == "a"){ print "selected='selected'"; } ?> >a</option>
            <option value="b" <?php if($selected_choice == "b"){ print "selected='selected'"; } ?> >b</option>
            <option value="c" <?php if($selected_choice == "c"){ print "selected='selected'"; } ?> >C</option>
        </select>
    </form>
    
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to submit a form with method GET and action index.php?id=3. The
I got this code in my submit form <form id=myform action='hello.php' method='GET'> <input type=button
Is it possible to do this? <form action=/process_form method=get> <input type=hidden name=some_value value=top_secret />'
have a joomla module template like this <form action=<?php echo JRoute::_('index.php'); ?> name=find method=post>
I have a form to upload image like below <form name=sample enctype=multipart/form-data action=index.php method=post
I've recently come across something like: <form method=get action=/somewebdir/script.php> <input type=radio name=param0 value=foo />
I have a such form with many links: <form name=myform action= method=get id=form> <p>
i.e. - <form action=http://192.168.1.20/form_action.asp method=get> vs. ( without a specific handler, still valid html?
I have a form validation method that's called on submit. It executes a get
I have the following form that has 2 selects: <form id=form class=form_visitar method=post action=ajax/selects.php>

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.