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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:10:24+00:00 2026-05-29T21:10:24+00:00

I made a form to create an account which contains several fields. Those are:

  • 0

I made a form to create an account which contains several fields. Those are: name,address,phone,secret question etc. This is working fine, but I face a problem in making the edit page. How can I repopulate the secret question dropdown field?
Please guide my html code is like following:

<select name="securityqustion"  class="securityqustion"  >
<option value="<?php echo $row['scruity_question'];?>" selected >
<?php echo   $row['scruity_question'];?></option>
<option class="option"  value="what is your nickname">what is your nickname</option>
<option value="what is your first school">what is your first school</option>
</select>

In the above code the selected question is repeated.

  • 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-29T21:10:25+00:00Added an answer on May 29, 2026 at 9:10 pm

    you need to build that from an array and check if the iterated value is the desired one, so you can add selected to it.

    This code generates the list and selects the <option> which matches the $row['scruity_question']

    <select name="securityqustion"  class="securityqustion" id="security_qustion">
    <?php
      $questions = array("what is your nickname", "what is your first school", "whats your cats name");
      forand compare each ($questions as $question) {
        if ($question == $row['scruity_question']) 
          $selected = "selected"
        else 
          $selected = "";
        echo "<option value=\"{$question}\" {$selected}>{$question}</option>\n";
      }
    ?>
    </select>
    

    NOTE

    Storing the security question as a string is a bad idea – when you change the spelling of a question it doesn’t match whats stored in the database. Better put the questions into a seperate database table and use the ID of a question for references.

    SIDENODE from Damien Pirsy (important enough to be included in an answer)

    nickname as a security question is not really safe: all my friends would be able to request a new password for my account just by “guessing” that…First school also, even my relatives would know that!:D Use something which is really difficult to guess, even with social engineering; or better, don’t use security questions at all – Damien Pirsy

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

Sidebar

Related Questions

I'm trying to create a form that contains these multidimensional arrays: <input type=text name=cost[1][desc]>
Hi I want to make a create form for 'Product' Model, which it-self contains
I have a form made up of multiple, optional subparts - each of which
I have made a class which a form can inherit from and it handles
I'm setting up a form in which multiple entries can potentially be made (via
I've made a small example with a Person class, which contains a list of
I want to create a web form which will allow the user to upload
I made a windows form application which maps whole of spsite (given in text
I've made my search form with html and jquery. When I input a name
I made a form class in c# that has a devexpress grid, a label

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.