Total Noob
Banned - By Request
- May 10, 2009
- 2,446
- 2,732
Hi,
I have an iFrame set up, but obviously I do not want to get caught and have it leaked.
I have my iFrame set up at http://www.site.com and it also goes to it if I enter http://www.site.com/index.php.
So when I am doing a DMR, should I do these scripts?
first one, goto.php
second one, goto2.php
So right now if I sent them to http://www.site.com/goto.php it sends then to http://www.site.com/goto2.php and then goes to http://www.affiliate.com/link.php, and if it's not blank sends them to Google.
My question is, what do I put in http://www.affiliate.com/link.php? Because since it's iFramed, I'm not sure if I should put http://www.site.com or http://www.affiliate.com/afflink.
Any help would be great.
Jared
I have an iFrame set up, but obviously I do not want to get caught and have it leaked.
I have my iFrame set up at http://www.site.com and it also goes to it if I enter http://www.site.com/index.php.
So when I am doing a DMR, should I do these scripts?
first one, goto.php
Code:
<?php
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.site.com/goto2.php\">";
?>
Code:
<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://[B]www.affiliate.com/link.php[/B]\">";
}
else
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.google.com\">";
}
?>
My question is, what do I put in http://www.affiliate.com/link.php? Because since it's iFramed, I'm not sure if I should put http://www.site.com or http://www.affiliate.com/afflink.
Any help would be great.
Jared