zurück
include ("../login.inc");
$intern=FALSE;
$ip=$REMOTE_ADDR;
###added by timo
if ($ip=="192.168.0.24") $ip = rand(1,255).".".rand(1,255).".".rand(1,255).".".rand(1,255);
###
$stmt="select name, ip from daten where ip='$ip' order by idx";
if (!$erg=mysql_db_query($db, $stmt)) echo $stmt;
$row=mysql_fetch_array($erg);
if ($row["name"]<>"") {
$name=$row["name"];
if ( strtoupper($name)<>"ECONNEX") $intern=TRUE;
}
$ipp=explode(".", $ip);
if ($ipp[0]==192 and $ipp[1]==168) {
$intern=TRUE;
$haus=TRUE;
}
?>