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

The Archive Base Latest Questions

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

What I have is that when someone clicks a link on my index it

  • 0

What I have is that when someone clicks a link on my index it calls index.php?action=signup and that will display a signup form.

How do I then cause the signup form to maintain the action=signup portion of the query string so that when the user clicks “Submit” the new query string is index.php?action=signup&email=user@email.com?

What is the best way to set this up? Should I somehow split the actions into GET and the data into POST?

I am not sure if I am describing this correctly but I want to keep all my functions on the index.php so when I integrate .htaccess everything will be like www.site.com/signup, www.site.com/login and so on.

  • 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-27T11:27:36+00:00Added an answer on May 27, 2026 at 11:27 am

    The best way to do this on a form submission is to change the <form> action to the correct URL and the method to GET, like so:

    <form action="index.php?action=signup" method="GET">

    Then, hidden in your form, you put something like the following:

    <input type="hidden" name="action" value="signup" />

    Then your URL will contain the correct parameters when it is submitted.

    However, if you need to modify this server side, then you can get all of your query parameters via $_SERVER['QUERY_STRING']. Use parse_str to get an array of values, and use http_build_query to recreate the query string:

    Example:

    $params = array();
    parse_str( $_SERVER['QUERY_STRING'], $params);
    $params['email'] = 'user@email.com';
    echo http_build_query( $params); // Will output a new query string for your URLs
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking to have it so that if someone enters information in a form,
this is a little bit tricky. usually when someone clicks on a link that
I have a table that someone update this table every day. I would like
I have a problem that someone introduced a bug but I do not know
I have the same question for Maven that someone had about Ant ( How
I have a custom password validator that someone gave me in an answer to
I am posting this in hopes that someone might have dealt with a similar
I think I have a basic understanding of this, but am hoping that someone
I have a field that indicates whether someone wars a commission or a fee.
I have a problem that I thought someone may be able to help me

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.