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! Quote Link to comment 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']; Quote Link to comment 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 Quote Link to comment 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.