View Single Post
  #3 (permalink)  
Old 07-07-2008, 07:47 AM
nicksor nicksor is offline
BANNED
 
Join Date: May 2008
Posts: 169
Thanks: 2
Thanked 8 Times in 5 Posts
Activity: 0%
Longevity: 17%
Today: 0/5
Default Re: Email campaign + redirects + referrers?

use php/perl script.. in php
Code:
 <? header("Location: http://affiliate/url"); ?>
in perl
Code:
#!/usr/bin/perl
print "Content-type:text/htmln";
print "Location: http://affiliate/urlnn";
that will display your referer..
Reply With Quote