Greetings ;)
Well i need some help here.
I got a site and people click on link on my site
Example!
the link is www .mysite.com/redirect.php/url=www.google.com/search.php?word=computer&pages=195&country=us&ip=127.0.0.1
So when somebody click on it they will beredirect to my redirect.php file for a check at link.
-----------------------------
<?php
$url = $_GET;
$myPostbackUrl=$url;
$PbUrl=$myUrl.'&name='.bob;
header('location:'.$PbUrl);
?>
--------------------------------
This is the script inside the redirect.php
But here is the problem, when the script redirect it only take some "words" or what i should call them.
When it redirect after the script - http:// google.com/search.php?word=computer?name=bob
As you can see it miss some words like pages,country and ip.
it seems that the script only grab the url to the first &, and the delete the rest :(
So i would really appericate if someone could help me solve this strange problem :)