gladiator83x Posted June 13, 2006 Share Posted June 13, 2006 Hey All,I have two pages and I am trying to pass a variable called $hlink from page1.php to page2.php. I was just wondering if someone could help me out? This is what I have been using:On page1.php:<phpecho '<a href="page2.php?string11= . $hlink . ">String is:</a>';?><?phpOn page 2 I have : if (isset ($_GET['string11'])) echo $_GET['string11'];?>My variable $hlink stores a title that I want to bring up again on page2.php; however, the only thing that pops up is the output ".$hlink." Any suggestions? Quote Link to comment https://forums.phpfreaks.com/topic/11915-variable-in-another-file/ Share on other sites More sharing options...
joquius Posted June 13, 2006 Share Posted June 13, 2006 echo "<a href=\"page2.php?string11=$hlink\">String is:</a>"; Quote Link to comment https://forums.phpfreaks.com/topic/11915-variable-in-another-file/#findComment-45205 Share on other sites More sharing options...
gladiator83x Posted June 13, 2006 Author Share Posted June 13, 2006 [!--quoteo(post=383455:date=Jun 13 2006, 04:25 PM:name=joquius)--][div class=\'quotetop\']QUOTE(joquius @ Jun 13 2006, 04:25 PM) [snapback]383455[/snapback][/div][div class=\'quotemain\'][!--quotec--]echo "<a href=\"page2.php?string11=$hlink\">String is:</a>";[/quote]Thanks Joquius!!! That definitely worked [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /] Quote Link to comment https://forums.phpfreaks.com/topic/11915-variable-in-another-file/#findComment-45211 Share on other sites More sharing options...
kenrbnsn Posted June 13, 2006 Share Posted June 13, 2006 You can also do it without escaping the double quotes...[code]<?php echo '<a href="page2.php?string11=' . $hlink . '">String is:</a>'; ?>[/code]You'll notice that I added a single quote after the "=" and before the following double quote in your original code.Ken Quote Link to comment https://forums.phpfreaks.com/topic/11915-variable-in-another-file/#findComment-45215 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.