Просмотр файла tama/entry.php

Размер файла: 2.16Kb
<?
include ("modules/info.php");
include ("modules/header_nocache.php");


if ((!@$_GET["login"]) || (!@$_GET["password"])) {     ?>
</small><u>&#x0412;&#x0432;&#x0435;&#x0434;&#x0438;&#x0442;&#x0435;
&#x043F;&#x043E;&#x0436;&#x0430;&#x043B;&#x0443;&#x0439;&#x0442;&#x0441;&#x0430;
&#x0432;&#x0430;&#x0448;
&#x043B;&#x043E;&#x0433;&#x0438;&#x043D;
&#x0438;
&#x043F;&#x0430;&#x0440;&#x043E;&#x043B;&#x044C;:</u><br/>
&#x041B;&#x043E;&#x0433;&#x0438;&#x043D;:<br/>
<input type="text" name="login" maxlength="12" /><br/>
&#x041F;&#x0430;&#x0440;&#x043E;&#x043B;&#x044C;:<br/>
<input type="password" name="password" maxlength="8" /><br/>
<anchor>&#x041F;&#x043E;&#x0435;&#x0445;&#x0430;&#x043B;&#x0438;!
<go href="entry.php" method="get">
<postfield name="login" value="$(login)"/>
<postfield name="password" value="$(password)"/>
</go>
</anchor>
<small>
<?
}
if ((@$_GET["login"]) && (@$_GET["password"])) {
$login=htmlspecialchars(@$_GET["login"]);
$password=htmlspecialchars(@$_GET["password"]);
if ((ereg("[a-zA-Z0-9]",$login)) && (ereg("[a-zA-Z0-9]",$password)) && (strlen($login)<13) && (strlen($password)<9)) {
mysql_connect($host,$user,$parol);
mysql_select_db($database);
$query="SELECT * FROM `pet_users` WHERE `login`='$login' AND `password`='$password'";
$result=mysql_query($query);
$num=mysql_num_rows($result);
 if (($num=="") || ($num=="0")) {
  echo "&#x041F;&#x0435;&#x0447;&#x0430;&#x043B;&#x044C;&#x043D;&#x043E;
  :-( &#x043D;&#x043E;
  &#x043B;&#x043E;&#x0433;&#x0438;&#x043D;
  &#x0438;&#x043B;&#x0438;
  &#x043F;&#x0430;&#x0440;&#x043E;&#x043B;&#x044C;
  &#x043D;&#x0435;&#x0432;&#x0435;&#x0440;&#x043D;&#x044B;,
  &#x043F;&#x043E;&#x043F;&#x0440;&#x043E;&#x0431;&#x0443;&#x0439;&#x0442;&#x0435;
  &#x0432;&#x0432;&#x0435;&#x0441;&#x0442;&#x0438; &#x0438;&#x0445;
  <a href=\"entry.php\">&#x0435;&#x0449;&#x0435; &#x0440;&#x0430;&#x0437;</a>! :-)
  &#x0418;&#x043B;&#x0438; <a href=\"registration.php\">
  &#x0437;&#x0430;&#x0440;&#x0435;&#x0433;&#x0435;&#x0441;&#x0442;&#x0440;&#x0438;&#x0440;&#x0443;&#x0439;&#x0442;&#x0435;&#x0441;&#x044C;</a>! ;-)
  ";
 }
 else
 {
  include ("modules/user_control_panel.php");
 }
}
}
include ("modules/wup_link.php");
include ("modules/footer.php");
?>