Hello,
I am running across some trouble in Double Meta Refresh.
I have the following code as below in say www.example.com created for meta refresh for placing the file.
Both the files are hosted in same place fyi.
index.php:
url1.php
Now in my incentive landing page when i click on the offer, the page goes to www.example.com and freezes. Its not proceeding further.
Can someone help me out?
Thanks
I am running across some trouble in Double Meta Refresh.
I have the following code as below in say www.example.com created for meta refresh for placing the file.
Both the files are hosted in same place fyi.
index.php:
Code:
<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv="refresh" content="0;url=http://www.example.com/url1.php">";
}
?>
url1.php
Code:
<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv="refresh" content="0;url=http://www.affiliatelink.com">";
}
?>
Now in my incentive landing page when i click on the offer, the page goes to www.example.com and freezes. Its not proceeding further.
Can someone help me out?
Thanks