<?php
/* mylinks.php */
$ids = array (
1=> "your first affiliate link here",
2=> "another affiliate link ...",
3=> "a third affiliate link");
$i = $_GET['id'];
header('Location:$ids[$i]');
?>
<a href="mylinks.php?id=1" rel="nofollow">Buy it now!</a>


