Jump to content

pass variable in url


samona

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.