| Server IP : 27.254.152.13 / Your IP : 216.73.217.38 Web Server : Apache/2 System : Linux ns1-252017.dragonhispeed.com 5.2.0 #1 SMP Fri Mar 29 22:50:14 MSK 2024 x86_64 User : coloflew ( 1072) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/coloflew/domains/tessabalpatiu.go.th/private_html/form/inc/ |
Upload File : |
<div class="panel panel-success">
<div class="panel-heading">
<h4>รายการแจ้งเรื่องร้องเรียนการทุจริต</h4>
</div>
<div class="panel-body">
รายการ
</div>
<table class="table table-condensed table-bordered table-striped table-hover">
<thead>
<tr>
<th class="text-center width-10">ชื่อ</th>
<th class="text-center width-70">เรื่อง</th>
<th class="text-center text-info width-20">
<span class="glyphicon glyphicon-comment" title="จำนวนความเห็น"></span>
</th>
<th class="text-center text-info width-15">แจ้งผู้ร้องเรียน</th>
</tr>
</head>
<tbody>
<?php
foreach ($ITEMS as $item):
?>
<tr class="<?php
if ($item['id'] === $HIGHLIGHT_ID) {
echo 'success';
}
?>">
<td>
<strong>
<?php
echo htmlspecialchars($item['name'], ENT_QUOTES, 'UTF-8');
?>
</strong>
<br>
<small class="text-muted" title="<?php
echo thai_datetime($item['created']);
?>">
<?php
echo thai_time($item['created']);
?>
</small>
</td>
<td>
<a href="view.php?topic_id=<?php echo $item['id']; ?>">
<?php
echo htmlspecialchars($item['title'], ENT_QUOTES, 'UTF-8');
?>
</a>
</td>
<td class="text-center text-info">
<?php
echo $item['num_comments'];
?>
</td>
<td>
<?php
if ($item['last_commented_name'] !== ''):
?>
<strong class="text-info">
<?php
echo htmlspecialchars($item['last_commented_name'], ENT_QUOTES, 'UTF-8');
?>
</strong>
<br>
<small class="text-muted" title="<?php
echo thai_datetime($item['last_commented']);
?>">
<?php
echo thai_time($item['last_commented']);
?>
</small>
<?php
endif;
?>
</td>
</tr>
<?php
endforeach;
?>
</tbody>
</table>
<?php
if ($NUM_PAGES > 1):
?>
<div class="panel-footer text-center">
<ul class="pagination">
<?php
for ($page = 1; $page <= $NUM_PAGES; ++$page):
?>
<li class="<?php
if ($page === $PAGE) {
echo 'active';
}
?>">
<a href="index.php?page=<?php echo $page; ?>">
<?php echo $page; ?>
</a>
</li>
<?php
endfor;
?>
</ul>
</div>
<?php
endif;
?>
</div>