File "search.php"
Full path: C:/xampp/htdocs/www_real-20250703105326/search.php
File
size: 922 B (922 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
// ServerAion Web by Pr00f & Sky (serveraion.ru)
require "header.php";
require "modules/search_m.php";
?>
<div class="case">
<div class="content">
<div class="news">
<div class="news-title"><center>Procurar jogador</center></div>
<div>
<table align="center">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<tr>
<td width="150px">Nome do personagem:</td>
<td><input type="text" class="field-reg" name="name" ></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" class="button-submit dark-shadow" value="Procurar" name="submit" ></td>
</tr>
</form>
</table>
<?php if(!empty($error)) echo '<div class="error" align="center">'.$error.'</div>'; ?>
<?php if(!empty($success)) echo '<div>'.$success.'</div>'; ?>
</div>
</div>
</div>
<?php require "sidebar.php"; ?>
</div>
<?php require "footer.php"; ?>