gts6
Regular Member
- Aug 22, 2007
- 422
- 516
why is there even a need for more than 1 double-meta refresh page?
just create one that accepts a querystring and host it somewhere and throw all your links to it that you want the refer blanked right to that one page.
creating many pages that do the same exact thing is too time consuming, especially if you are using hundreds of links that you need blanked, too much work man, and im allergic to work. just the thought of it makes my privates itch.
here i am posting a standard double meta refresh that most people around here are using, and i modified it for the task for you.
take these 2 files and host them where you like. Name them dmr1.php and dmr2.php then send all your traffic to it with a ? between to separate your affiliate link like this example:
just create one that accepts a querystring and host it somewhere and throw all your links to it that you want the refer blanked right to that one page.
creating many pages that do the same exact thing is too time consuming, especially if you are using hundreds of links that you need blanked, too much work man, and im allergic to work. just the thought of it makes my privates itch.
here i am posting a standard double meta refresh that most people around here are using, and i modified it for the task for you.
take these 2 files and host them where you like. Name them dmr1.php and dmr2.php then send all your traffic to it with a ? between to separate your affiliate link like this example:
Code:
EXAMPLE
www.domainwhereyouhostedthese2files.com/dmr1.php?http://www.youraffiliatelink.com
Code:
<?php
$sn = $QUERY_STRING;
echo "<meta http-equiv="refresh" content="0;url=dmr2.php?".$sn."">";
?>
Code:
<?php
$referer = $_SERVER['HTTP_REFERER'];
$sn=$QUERY_STRING;
if($referer == "")
{
if ($sn !="" )
{
echo "<meta http-equiv="refresh" content="0;url=".$sn."">";
}
}
?>
Last edited: