tincan Posted July 3, 2006 Share Posted July 3, 2006 can anyone tell me why I am unable to pick up the $id variable from this ping sent from my blog?The ping address I have set in the blog is in this format.http://www.mysite.com/ping.php?id=10564In my ping.php script I have tried both $id=$http_post_vars['id'] and $id=$http_get_vars['id']but neither of these are able to pick up the variable from the ping.What am I doing wrong? Quote Link to comment https://forums.phpfreaks.com/topic/13543-picking-up-pings-in-php/ Share on other sites More sharing options...
zq29 Posted July 3, 2006 Share Posted July 3, 2006 Have you tried this?[code]$id = $_GET['id'];[/code] Quote Link to comment https://forums.phpfreaks.com/topic/13543-picking-up-pings-in-php/#findComment-52457 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.