<?
// TRACKING202 CLOAKED REDIRECT API EXAMPLE USAGE
// http://go.tracking202.com/?url=
//this is your affiliate url, we've appended the subid to the end with the tracking202pro subid
$affiliateUrl = 'http://www.lynxtrack.com/afclick.php?o=9154&b=tf1hcdmc&p=14093&l=1&s=' . $_COOKIE['t202proSubid'];
//this line is extremely important, this encodes the string so it will work with our cloaked redirect api
$affiliateUrl = urlencode($affiliateUrl);
//now we will redirect the traffic through our api
$redirectUrl = 'http://go.tracking202.com/?url=' . $affiliateUrl;
//this starts the redirect
header('location: '. $redirectUrl);
?>