Hey,
Man... I know this is so easy and yet I can't get this to work. I have a url that I want to pass a simple variable with:
http://www.somerandomsite.com/index.php?page=1
Here's what I have on the destination page:
<?php $page=$_GET;?>
<?php header( 'Location: http://www.anotherrandom.com/?pid=$page') ;?>
However, the destination is not placing the "1" in the redirect. What am I doing wrong?
Thanks, everyone.
Jon