<?PHP
// This script is to be used with the Affiliate Jump Tutorial at www.stevedawson.com/articles.php
/************************************************************************/
/* PHP Affiliate Jump Script */
/* =========================== */
/* */
/* Written by Steve Dawson - http://www.stevedawson.com */
/* Freelance Web Developer - PHP, MySQL, HTML programming */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* but please leave this header intact, thanks */
/************************************************************************/
/*
Save this page as jump.php and when linking to this script use the following:
<a href="jump.php?m=XXXXXX">XXXXXX</a>
Where XXXXXX is your merchant.
*/
$m = $_GET['m'];
if ($m == "") {$link = "http://www.stevedawson.com/mobiles/";} // Default Blank
if ($m == "bodybuilding.com") {$link = "http://www.dpbolvw.net/click-2375575-10409410";}
if ($m == "UKPhoneShop") {$link = "http://tracker.tradedoubler.com/click?p=985&a=949731&g=5119";}
/*
To add more jump links, just copy and paste one of
the lines above and modify the $m and $link values
*/
header("Location: $link"); // Jump to the hiddden affiliate URL above
exit();
?>