Here is a easy script to alter you can name it anything you want .php upload it to your public directory. You can alter it to include nofollow if you want.
PHP Code:
// 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:
XXXXXX
Where XXXXXX is your merchant.
*/
$m = $_GET['m'];
if ($m == "") {$link = "http://www.yoursite.com/mobiles/";} // Default Blank
if ($m == "Just Phones") {$link = "http://www.anysite.com/awclick.php?mid=97&id=38362";}
if ($m == "UKPhoneShop") {$link = "http://tracker.anysite.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();
?>