Файл: pesn_voini/peseni_vojni/instalscript/engine/public/online/search.php
Строк: 31
<?php
//
//
require_once($_SERVER['DOCUMENT_ROOT']."/instalscript/engine/_inc/sys.php");
//
//
head("Поиск игроков",$uid); # Голова
//
//
echo logs();
//
//
if(isset($_REQUEST['search_player'])){
//
//
$login = checking($_POST['login']);
//
//
if(empty($login)){
//
//
err("Введите логин");
//
//
header("location: ?");
//
//
exit();
//
//
}else{
//
$count_user = fch("SELECT * FROM `users` WHERE `login` = ? LIMIT 1", array($login));
//
//
if($count_user == 0){
//
//
err("Игрок не найден");
//
//
header("location: ?");
//
//
exit();
//
//
}
//
//
if($count_user) {
//
//
header("location: /profile/".$count_user['id']);
//
//
exit();
//
//
}
//
//
}
//
//
}
//
//
?>
<div class="cntr">Введите логин персонажа:<br><form action="?search_player" method="post"><input class="" type="text" name="login" maxlength="50" value="" /><input type="submit" name="search_player" class="btn btn-blue w50" value="Поиск"></form></div>
<div class="hr"></div><div class="message"><a href="/online/">Вернуться назад</a></div>
<?
//
//
foot($uid);
//
//
?>