first commit

This commit is contained in:
unknown
2012-03-29 13:00:34 +02:00
commit 6928cbcd1d
2446 changed files with 85772 additions and 0 deletions
+90
View File
@@ -0,0 +1,90 @@
<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename search.tpl ##
## Developed by: Dzoki ##
## License: TravianX Project ##
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
## ##
#################################################################################
?>
<form action="" method="post">
<table id="member">
<thead>
<tr>
<th colspan="3">Search v1.0</th>
</tr>
</thead>
<tr class="slr3">
<td>
<select name="p" size="1" class="slr3">
<option value="player" <?php if($_POST['p']=='player'){echo "selected";}?>>Search player</option>
<option value="alliances" <?php if($_POST['p']=='alliances'){echo "selected";}?>>Search alliances</option>
<option value="villages" <?php if($_POST['p']=='villages'){echo "selected";}?>>Search villages</option>
<option value="email" <?php if($_POST['p']=='email'){echo "selected";}?>>Search E-mail</option>
<option value="ip" <?php if($_POST['p']=='ip'){echo "selected";}?>>Search IPs</option>
<option value="deleted_players" <?php if($_POST['p']=='deleted_players'){echo "selected";}?>>Search deleted players</option>
</select>
</td>
<td>
<input name="s" value="<?php echo $_POST['s'];?>">
</td>
<td>
<input type=submit value=Search class="slr3">
</td>
</tr>
</table>
</form>
<?php
if($_GET['msg']){
echo '<div style="margin-top: 50px;" class="b"><center>';
if($_GET['msg'] == 'ursdel'){
echo "User was deleted.";
}
echo '</center></div>';
}
?>