This script is having some issues
Any clue whats up?
PHP:
<?php
$ADMIN[defaulturl] = "http://www.dragon-gaming.com/wow/dontsteal.html";
$okaysites = array ("http://dragon-gaming.com","http://www.dragon-gaming.com");
$ADMIN[url_1] = "http://www.dragon-gaming.com/download";
//////////////////////////////////////////////////////
$reffer = $HTTP_REFERER;
if($reffer) {
$yes = 0;
while(list($domain, $subarray) = each($okaysites)) {
if (ereg("$reffer",$subarray)) {
$yes = 1;
}
}
$theu = "url"."_"."$site";
if ($ADMIN[$theu] AND $yes == 1) {
header("Location: $ADMIN[$theu]/$file");
} else {
header("Location: $ADMIN[defaulturl]");
}
} else {
header("Location: $ADMIN[defaulturl]");
}
?>
Any clue whats up?
Last edited:












