Размер файла: 3.42Kb
<?php
header ("Content-type:text/vnd.wap.wml; charset=utf-8");
print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
print "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\" \"http://www.wapforum.org/DTD/wml_1.1.xml\">";
print "<wml><head><meta http-equiv=\"Cache-Control\" content=\"no-cache\" forua=\"true\"/></head>";
include "./ini.php";
mysql_query ("select * from bannedib WHERE ci='$ci' AND (ip = '".getenv(REMOTE_ADDR)."')and(browser = '".getenv(HTTP_USER_AGENT)."')");
if(mysql_affected_rows()!=0){include "b.php";}
print "<card title=\"Авторизация\">
<p align=\"center\">";
if(!empty($login))
$q = @mysql_query("select `id` from `".$px.$utable."` where `login`='".$login."' and ci='$ci';");
if(empty($id)) {
$data = @mysql_fetch_array($q);
$id = $data['id'];
}
$login = autorize();
if($login) {
if(!$login['ip']) { @mysql_query("update `".$px.$utable."` set `ip`='".getenv(REMOTE_ADDR)."' where `id`='".$id."' and ci='$ci';"); }
if(!$login['soft']) { @mysql_query("update `".$px.$utable."` set `soft`='".getenv(HTTP_USER_AGENT)."' where `id`='".$id."' and ci='$ci';"); }
if($login['soft']==".getenv(HTTP_USER_AGENT).") {
print "<small><b>Привет ".$login['login']."!</b></small><br/>";
print "<small>Твой браузер: <b>".getenv(HTTP_USER_AGENT)."</b></small><br/>";
print "<small>IP: <b>".getenv(REMOTE_ADDR)."</b></small><br/>";
print "<small>Приятного общения :)))</small><br/>";
print "<small><a href=\"enter.php?ci=$ci&id=$id&pass=$pass\">В чат</a></small><br/>"; } else
{ @mysql_query("update `".$px.$utable."` set `soft`='".getenv(HTTP_USER_AGENT)."' where `id`='".$id."' and ci='$ci';");
print "<small><b>Привет ".$login['login']."!</b></small><br/>";
print "<small><b>Внимание вход в чат под другим ip или Браузером. Данные обновлены!</b></small><br/>";
print "<small>Твой браузер: <b>".getenv(HTTP_USER_AGENT)."</b></small><br/>";
print "<small>IP: <b>".getenv(REMOTE_ADDR)."</b></small><br/>";
print "<small>Приятного общения :)))</small><br/>";
print "<small><a href=\"enter.php?ci=$ci&id=$id&pass=$pass\">В чат</a></small><br/>"; }
print "<small>****</small>
<br/><small><a href=\"http://ruwap.com.ru\">ruwap.com.ru</a></small><br/>";
} else { print "<small>Не верный ввод!</small><br/>
<small><a href=\"index.php?ci=$ci\">Назад</a></small><br/>
<small><a href=\"http://ruwap.com.ru\">ruwap.com.ru</a></small>"; }
print "</p>
</card>
</wml>";
@mysql_close();
?>