| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/hkosl.com/nick/codeigniter/application/views/main/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once 'head.php';?>
</head>
<body class="container">
<h1>News Demo</h1>
<table class="table table-bordered table-hover">
<tr>
<th>title</th>
<th>short_content</th>
<th>content</th>
<th>date</th>
<th>start_date</th>
<th>end_date</th>
<th>cover_img</th>
</tr>
<?php
foreach ($news as $item) {
?>
<tr>
<td><?= _h($item->title) ?></td>
<td><?= _h($item->short_content) ?></td>
<td><?= ($item->content) ?></td>
<td><?= _h($item->date) ?></td>
<td><?= _h($item->start_date) ?></td>
<td><?= _h($item->end_date) ?></td>
<td><?php if (!empty($item->cover_img)) { ?>
<img src="<?= assets_url($item->cover_img) ?>">
<?php } ?></td>
</tr>
<?php
}
?>
</table>
<div class="text-center">
<?= $page_links ?>
</div>
<div class="col-md-12">
<a class="btn btn-default" href="<?=front_url('home/')?>">Back</a>
</div>
<?php include_once 'footer.php' ?>
<?php include_once 'script.php' ?>
</body>
</html>