mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-02 18:44:21 +00:00
37 lines
1.6 KiB
Smarty
37 lines
1.6 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename message.tpl ##
|
|
## Developed by: Dzoki ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
?>
|
|
<style>
|
|
.del {width:12px; height:12px; background-image: url(img/admin/icon/del.gif);}
|
|
</style>
|
|
<table id="member" style="width:225px">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">IGM/Reports</th>
|
|
</tr>
|
|
</thead>
|
|
<tr>
|
|
<td>IGM ID</td>
|
|
<td><form action="" method="get"><input type="hidden" name="p" value="message"><input type="text" class="fm" name="nid" value="<?php echo $_GET['nid'];?>"> <input type="submit" value="ok"></form></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Report ID</td>
|
|
<td><form action="" method="get"><input type="hidden" name="p" value="message"><input type="text" class="fm" name="bid" value="<?php echo $_GET['bid'];?>"> <input type="submit" value="ok"></form></td>
|
|
</tr>
|
|
</table><br>
|
|
<?php
|
|
error_reporting(0);
|
|
if($_GET['nid'] and ereg('^[0-9]', $_GET['nid'])){
|
|
include('msg.tpl');
|
|
}elseif($_GET['bid'] and ereg('^[0-9]', $_GET['bid'])){
|
|
include('report.tpl');
|
|
}
|
|
?> |