Quote:
|
Originally Posted by spacedog
|
you cant pass along 2 & symbols to one & symbol
example if my script points to
http://www.mysite.com/out.php?url=ht...44&id=blahblah
your script is getting 2 variables, so one is the cutoff link "http://adultfriendfinder.com/go/page/tgp_ffadult_44" and the second variable is "id=blahblah"
to fix this it depends on the script , but if you icq me i can prob solve it pretty quickly
using the example above you could simply put as your first line
if (preg_match("/adultfriendfinder/", $url)) {
$url = "$url&id=$id";
}