hi hessian,
Thanks for your quick response.
I am pretty much clueless when it comes to PHP - I dont know really what you mean by urlencode and how would I use it??
The code on the redirect page Im using at the moment is:
<?php
$SETUP[siteurl] = "http://www.mydomain.com";
if ($url) {
$lines_array = file($url);
$lines_string = implode('', $lines_array);
eregi("<head>(.*)</head>", $lines_string, $head);
?>
and then
<?php
exit();
} else {
header("Location: $SETUP[siteurl]");
exit();
}
This coding seems to work for redirecting normal url's like www.sitexyz.com but not the affiliate links. I dont even know what the above code means, but it's not working on these damn affiliate links.. arrr...if you have any ideas on what coding may work, I 'd be very thankful.