co.ador Posted January 17, 2010 Share Posted January 17, 2010 <a href="<?php "menu.php?id=". $_GET['id']. "".'®ister='. $_GET['register'] ?>"> When I click on this link then it won't take me to menu.php I don't know what could be going wrong with the way it is script it. help Link to comment https://forums.phpfreaks.com/topic/188815-what-could-be-wrong-with-this-a-tags-link/ Share on other sites More sharing options...
wildteen88 Posted January 17, 2010 Share Posted January 17, 2010 You need to echo out your url. <a href="<?php echo "menu.php?id=". $_GET['id']. "".'®ister='. $_GET['register'] ?>">SOME TEXT</a> Link to comment https://forums.phpfreaks.com/topic/188815-what-could-be-wrong-with-this-a-tags-link/#findComment-996837 Share on other sites More sharing options...
hamza Posted January 17, 2010 Share Posted January 17, 2010 <a href="<?php "menu.php?id=". $_GET['id']. "".'®ister='. $_GET['register'] ?>"> When I click on this link then it won't take me to menu.php I don't know what could be going wrong with the way it is script it. help make something like this <a href="<?= "menu.php?id=". $_GET['id']. "".'®ister='. $_GET['register'] ?>"> now it will show the string and get values. Link to comment https://forums.phpfreaks.com/topic/188815-what-could-be-wrong-with-this-a-tags-link/#findComment-996843 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.