pchopder Posted January 9, 2008 Share Posted January 9, 2008 Hey guys and gals, I was just wondering how do I manage to set something like http://example.exm/index.php?entext=hi there&emtext=ex name and for it to read correctly on another page like $message=$GET_['entext']; $message2=$GET_['emtext']; print "$message"; print "$message2"; displaying : hi there ex name or something I'm lost x.x Link to comment https://forums.phpfreaks.com/topic/85239-solved-inurl/ Share on other sites More sharing options...
pocobueno1388 Posted January 9, 2008 Share Posted January 9, 2008 <?php $entext = $_GET['entext']; $emtext = $_GET['emtext']; echo $entext.' '.$emtext; ?> Link to comment https://forums.phpfreaks.com/topic/85239-solved-inurl/#findComment-434846 Share on other sites More sharing options...
pchopder Posted January 9, 2008 Author Share Posted January 9, 2008 thx Link to comment https://forums.phpfreaks.com/topic/85239-solved-inurl/#findComment-434854 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.