mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-03 11:04:24 +00:00
38 lines
673 B
Smarty
38 lines
673 B
Smarty
<?php
|
|
$id = $_GET['did'];
|
|
if(isset($id))
|
|
{
|
|
$village = $database->getVillage($id);
|
|
?>
|
|
<br /><br />
|
|
<table id="profile">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="3" class="on"><a href="#"><?php echo $village['name']; ?></a>'s Build Log</th>
|
|
</tr>
|
|
<tr>
|
|
<td class="on">#</td>
|
|
<td>Event</td>
|
|
</tr>
|
|
</thead>
|
|
<?php
|
|
$sql = "SELECT * FROM ".TB_PREFIX."build_log WHERE wid = ".$_GET['did']."";
|
|
$result = mysql_query($sql);
|
|
while($row = mysql_fetch_assoc($result))
|
|
{
|
|
$j++;
|
|
echo '
|
|
<tr>
|
|
<td class="on">'.$j.'</td>
|
|
<td>'.$row['log'].'</td>
|
|
</tr>';
|
|
}
|
|
?>
|
|
</thead>
|
|
</table><?php
|
|
}
|
|
else
|
|
{
|
|
include("404.tpl");
|
|
}
|
|
?> |