For those so inclined - this is an example of a php jump script that helps mask a url. You would use this to prevent someone from mousing over a link (text or image via href) and typing the website address into the location bar bypassing your affiliate link.
First make a demo webpage called "demo.html" under the root of your domain and embed the following code (change the domain name to YOUR domain):
Code:
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ] 原帖地址: How To Make Money Online [Only registered and activated users can see links. ]
NEXT make a php file called "go.php" also under the root of your domain:
Place this code inside go.php:
Code:
switch ($_GET['m']) {
case "water":
$link = "http://www.ozarkawater.com";
break;
case "air":
$link = "http://en.wikipedia.org/wiki/Oxygen";
break;
case "tool":
$link = "https://adwords.google.com/select/KeywordToolExternal";
break;
default:
$link = "http://www.YourDomain.com/"; //**************change to your domain!!
break;
}
header("Location: $link");
exit();
?> [Only registered and activated users can see links. ]