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 Quote 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; ?> Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/85239-solved-inurl/#findComment-434854 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.