Файл: darkworld/infomob.php
Строк: 29
<?
Error_Reporting(E_ALL & ~E_NOTICE);
include_once("files/antixak.php");
header("Content-type:text/vnd.wap.wml");
echo "<?xml version="1.0" encoding="UTF-8"?>";
echo "<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN" "http://www.wapforum.org/DTD/wml12.dtd">";
echo "<wml>n";
echo "<head><meta http-equiv="Cache-Control" content="no-cache" forua="true"/></head>";
echo "<card id="index" title="Персонаж">";
echo "<p align="left">";
$log = htmlspecialchars(stripslashes($log));
$pas = htmlspecialchars(stripslashes($pas));
/////////////////////////////////////////////////////
$text = @file("data/reg/$log.dat");
if ($text!=""){
$udata = explode(":||:",$text[0]);
$login=trim($udata[0]);
$password=trim($udata[1]);}
////////////////////////////////////////////////////////
if (md5($pas)==$password && $log==$login && $log!=="" && md5($pas)!=="") {
$id = htmlspecialchars(stripslashes($id));
if(!@file("data/monstrs/$id.dat")){echo"<small>Такого монстра не существует.</small>";include_once"files/down.php";exit;}
$file = @file("data/monstrs/$id.dat");
$data = explode("||",$file[0]);
echo"<small><b>$data[0]</b></small><br/>";
echo"<small>Уровень: $data[1]</small><br/>";
echo"<small>HP: $data[2]</small><br/>";
echo"<small>Удар: ~$data[5]</small><br/>";
echo"<br/><small><a href="okrestnosti.php?log=$log&pas=$pas">Назад</a></small>";
}else{echo"<small>Пароль или логин неверен!</small>";}
include_once"files/down.php";
?>