Jump to content

Recommended Posts

Hi,

 

How can I pass a variable from one page to another?  For example,

 

I have one page that will have a link to page 2, and I want page 1 to pass the variable "item" in the url to page two.  In page two I want to be able to access that variable and use it as a variable in the hidde tag of a form.  I know it's possible but I can't get it right.  Please advise?

 

 

Link to comment
https://forums.phpfreaks.com/topic/113746-pass-variable-in-url/
Share on other sites

Hi,

 

How can I pass a variable from one page to another?  For example,

 

I have one page that will have a link to page 2, and I want page 1 to pass the variable "item" in the url to page two.  In page two I want to be able to access that variable and use it as a variable in the hidde tag of a form.  I know it's possible but I can't get it right.  Please advise?

 

Page 1:

<a href="page2.php?item=socks">Page 2</a>

 

Page 2:

$socks = $_GET['item'];
.
.
.

echo "<input type='hidden' value='$socks' />";

 

That should be the gist of it.

Link to comment
https://forums.phpfreaks.com/topic/113746-pass-variable-in-url/#findComment-584541
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.