Amazon with a wide range of products, Ebay have a system called Auction Ads which will show relevant auctions links on your pages, Clickbank ( «« that's a referral link) which has a extensive list of digital products available and Commission Junction
PHP Redirection or Misdirection?
The Code
Click to see the ASP Code Version and read the article on Redirecting (Masking) Affiliate Links
<?php
$destname = strtolower($_GET['name'])
$Dests = array(
"crams"=>"http://www.cram-system.com",
"amazon"=>"http://www.amazon.co.uk",
"ebay"=>"http://www.ebay.co.uk",
"clickbank"=>"http://57erd.reseller.hop.clickbank.net",
"auctads"=>"http://www.auctionads.com/",
"cj"=>"http://www.cj.com/",
"yahoo"=>"http://www.yahoo.com/",
"goog"=>"http://www.google.com/",
"msn"=>"http://www.msn.com/"
)
// Code can be inserted in here to log the clickthrough into a database
header('HTTP/1.1 301 Moved Permanently');
// comment out the line above to send the default 302 redirect;
header('Location: ' . $Dests[$destname]);
// Send the user off to the affiliate page
?>

