samona Posted July 8, 2008 Share Posted July 8, 2008 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 More sharing options...
KevinM1 Posted July 8, 2008 Share Posted July 8, 2008 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.