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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:13:00+00:00 2026-06-01T15:13:00+00:00

I have created a PHP form which requires the user to select a postcode

  • 0

I have created a PHP form which requires the user to select a postcode from a list of postcode values.

The user presses submit two times:
– once to go to address select menu which will display a select drop-down with values
– second presses “ok” button to select the address corresponding to his postcode value

I need to keep the value of the selected postcode value for when the form gets submitted. I have tried setting up the postcode drop-down value chosen in a SESSION… but it gets lots when user presses form submit.

How can I keep all the form values even after refreshing the page when the user presses one of the submits?

  • 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-01T15:13:01+00:00Added an answer on June 1, 2026 at 3:13 pm

    “How can I keep all the form values even after refreshing the page when the user presses one of the submits?”

    Reading your question I didn’t understand if each of the form submits actually gets submitted to the server, but I’m going to assume so. I’m also assuming you’re trying to use PHP sessions to accomplish this.

    When the user submits the form, save the values server-side in a PHP session

    //Start the session
    session_start();
    //Save the values
    $_SESSION["foo"] = $_POST["bar"];
    ...
    

    If, after choosing the address, the user gets redirected to the initial form and you want to populate that:

    //Start the session
    <?php
       session_start();
    ?>
    
    <!-- Populate HTML form based on previously submitted values -->
    <input type="text" name="foo" value="<?php echo $_SESSION["foo"] ?>" />
    ...
    

    After the final submit you should have all the submitted values saved in the $_SESSION array. Don’t forget to always session_start() before trying to handle anything session related.

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

Sidebar

Related Questions

I have created an admin panel for a client in PHP, which requires a
I have created a custom PHP script which uploads information submitted by a form
I have created a user registration form using PHP, a password must be entered
I have created a PHP form, which, upon submission, goes to another PHP page.
I have a form which has two inputs. The first input allows a user
I have created a form, quite complex, with user input unique values, integers and
I have created an form validation using ajax/php. Each text box is validated using
I have created a PHP code to echo the following div <div id=main_catsel> <select
I have a script which returns 5 columns from a php result. I am
I have a form which has action=process.php . Inside that php file there is

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.