voyde Posted October 22, 2006 Share Posted October 22, 2006 Im working on a gamertag script, however I need it to recieve dynamic names right now its a static name.im looking for something like index.php?tag=someones name here which would display their nameAnd if that doesnt make sense ill go into it deeper.when index.php is displayed it will just display the name inside the script, i need it so I can have it likeindex.php?tag=another nameif i need to explain more please let me know Link to comment https://forums.phpfreaks.com/topic/24710-stupid-question/ Share on other sites More sharing options...
tomfmason Posted October 22, 2006 Share Posted October 22, 2006 If I am understanding you correctly. I think that the answer to your question is $_GET['tag']something like this.[code=php:0]$tag = $_GET['tag'];echo "Hello $tag";[/code]Is that what you meant?Tom Link to comment https://forums.phpfreaks.com/topic/24710-stupid-question/#findComment-112537 Share on other sites More sharing options...
voyde Posted October 22, 2006 Author Share Posted October 22, 2006 told you it was stupid lolThanks. Link to comment https://forums.phpfreaks.com/topic/24710-stupid-question/#findComment-112540 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.