just have your link point to the php script, and then serve a "thank-you" page with a meta redirect to the affiliate page. something like:
PHP Code:
$link_to = $_GET['link_to'];
print '<!DOCTYPE html>
<html>
<head><meta http-equiv="refresh" content="5;url='.$link_to.'"></head>
<body>
<p>Thanks for visiting, you are being redirected to '.$link_to.'. If you are not redirected within 10 seconds, <a href="'.$link_to.'">click here</a>.</p>
</body>
</html>';
and your link would look something like this
HTML Code:
<a href="http://www.yoursite.com/redirect.php?link_to=http://www.retailer.com">retailer.com</a>
Bookmarks