Do you trust meta refresh does it work for you ?

evamenders

Power Member
Joined
Aug 12, 2008
Messages
564
Reaction score
6
Hi to all, just read a very interesting page with

meta refresh

Does it work well ? do you trust it please?

Thanks enjoy your day
:cow_yello
 
thanks to all
yes i've seen and check if it's all ok
it works
great best news surprise me never us it before

:cow_yello
 
How we can confirm that it is checking for referrers. In what way we can use the meta refresh.
 
On the last page of your redirect, you check if referrer = "" aka blank and if so forward it to your offer and if not Houston we have a problem send them somewhere else instead.

PHP:
<?php
	$referer = $_SERVER['HTTP_REFERER'];
	if($referer == "")
	{
		echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.affiliate.com\">";	
	}
	else
	{
		echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.google.com\">";	
	}
?>
 
Back
Top