the_oliver Posted April 8, 2007 Share Posted April 8, 2007 Hi An external form site reterns a user to my site, with the following garbage on the end!: .php?custom%20where%20did%20you%20hear%20about%20us=Testing However if i try echo $_GET['custom where did you hear about us']; echo $_GET['custom%20where%20did%20you%20hear%20about%20us']; I get nothing! Any ideas why? Thanks! Link to comment https://forums.phpfreaks.com/topic/46186-solved-_get-problem/ Share on other sites More sharing options...
jscix Posted April 8, 2007 Share Posted April 8, 2007 Okay, I tried a <?php print_r ($_GET); ?> I got this(when using your get string): Array ( [custom_where_did_you_hear_about_us] => dfsfdsf ) So try, echo $_GET['custom_where_did_you_hear_about_us']; Link to comment https://forums.phpfreaks.com/topic/46186-solved-_get-problem/#findComment-224536 Share on other sites More sharing options...
the_oliver Posted April 8, 2007 Author Share Posted April 8, 2007 Wroked like a dream! Many thanks Link to comment https://forums.phpfreaks.com/topic/46186-solved-_get-problem/#findComment-224548 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.