Размер файла: 2.22Kb
- <?php
- include "ini3.php";
- include "includes/header2.php";
- include "includes/inc_online.php";
- print "<small>";
-
- $id=cyr(htmlspecialchars(stripslashes(trim($id))));
- $pass=cyr(htmlspecialchars(stripslashes(trim($pass))));
-
- if(!empty($id))
- {
- $q = mysql_query("select secur,golod,voodoo,nums,guns,cars,id,login,pass,money,level,police,health,zav,lsd,ban,admin from users where id='".$id."';");
- }
- else
- {
- die ($lang['empty_login']."</small></body></html>");
- }
-
- $data = mysql_fetch_array($q);
-
- $id=$data['id'];
- $login=$data['login'];
- $money=$data['money'];
- $level=$data['level'];
- $police=$data['police'];
- $stage=$data['stage'];
- $health=$data['health'];
- $cars=$data['cars'];
- $guns=$data['guns'];
- $nums=$data['nums'];
- $voo_por=$data['voodoo'];
- $golod=$data['golod'];
- $secur=$data['secur'];
- $zav=$data['zav'];
- $lsd=$data['lsd'];
- $ban=$data['ban'];
- $admin=$data['admin'];
-
- if($pass!=$data['pass'])
- {
- die ($lang['empty_login']."</small></body></html>");
- }
-
- mysql_query("update users set last='".time()."',city='1' where id='".$id."';");
- if($ban==0)
- {
-
-
-
- print "<b>".$lang['administraciya']."</b><br/><br/>";
-
-
- if ($mode == "bands")
- {
- print '<b>'.$lang['polh_bands'].'</b><br/>';
- $pr_q=mysql_query("select name,boss,avtoritet from bands order by avtoritet desc limit 10;");
-
- while($pr_ar=mysql_fetch_array($pr_q))
- {
- ++$i;
- print "<b>".$i.".</b>".$pr_ar['name']." (".$pr_ar['avtoritet'].")<br/>
- ".$lang['polh_boss'].": <b>".$pr_ar['boss']."</b><br/>";
- }
- }
- else
- {
-
- print "".$lang['adm']."<br/>";
-
- $pr_q=mysql_query("select login,admin from users where admin=7;");
-
- while($pr_ar=mysql_fetch_array($pr_q))
- {
- ++$i;
- print "<b>".$pr_ar['login']."</b><br/>";
- }
- print "".$lang['modery']."<br/>";
-
- $pr_o=mysql_query("select login,admin from users where admin=6;");
-
- while($pr_ar=mysql_fetch_array($pr_o))
- {
- ++$i;
- print "<b>".$pr_ar['login']."</b><br/>";
- }
- }
-
- print "<br/>---";
- print "<br/>>><a href=\"game.php?id=$id&pass=$pass\">".$lang['menu']."</a>";
- print "<br/>---";
-
- mysql_close();
- print "</small></body></html>";
- }
-
- elseif($ban==1)
- {
- die ($lang['empty_login']."</small></body></html>");
-
- }
- ?>