Файл: id3508/index.php
Строк: 52
<?
require "settings.php";
$name = "online.data";
$yes = "no";
$fill="$name";
$test = file("$fill");
$size = sizeof($test);
$n = "0";
do {
$data = explode("|", $test[$n]);
$time1 = date("d");
$time3 = date("H");
$time2 = date("i");
$time = ($time3*60)+(($time1*12)*60)+$time2;
$sss = $time-$data[1];
if ($login == "$data[0]") {
$array .= "$login|$time|rn";
$yes = "yes"; }
else {
if ($sss > 10) { } else { $array .= "$data[0]|$data[1]|rn"; }
}
$n++;
} while ($n < $size);
if ($yes != "yes") { $array .= "$login|$time|rn"; }
$fh = fopen($name, "w");
fputs($fh, "$array");
fclose($fh);
///////////////////////////////////////////////////////////////////////////
$name = "users.data";
$yes = "no";
$fill="$name";
$test = file("$fill");
$size = sizeof($test);
$n = "0";
do {
$data = explode("|", $test[$n]);
if ($login == "$data[2]" && $password == "$data[3]") { $yes = "yes"; }
$n++;
} while ($n < $size);
if ($yes == "yes") { print "
<html>
<title>$title</title>
<frameset rows="70,*" framespacing="0">
<frame name="up" src="club.php?p=1" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize>
<frameset cols="200,*" border="no" framespacing="0">
<frame name="menu" src="club.php?p=2&login=$login&password=$password" MARGINHEIGHT=0 MARGINWIDTH=0 FRAMESPACING=0 scrolling="auto" frameborder="0" noresize>
<frame name="main" src="club.php?p=4&login=$login&password=$password" MARGINHEIGHT=0 MARGINWIDTH=0 FRAMESPACING=0 scrolling="auto" frameborder="0" noresize>
</frameset>
</frameset>
</html>
";
} else { print "<center><font color=red><h1>Неверный логинпароль!</h1>"; exit; }
?>