|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<html>
<head>
<center><h2>浏览新闻</h2></center>
</head>
<center>
<table border="1">
<tr><?php echo $b['id'];?><th align="center">标题</th><th align="center">内容</th>
<th align="center">时间</th><th>编辑方式</th>
</tr>
<?php
foreach($a as $b){
?>
<tr>
<td align="center"><?php echo $b['title'];?></td>
<td align="center"><?php echo $b['content'];?></td>
<td align="center"><?php echo $b['time'];?></td>
<td ><a href="<?=site_url('/message/del')?>/<?php echo site_url($b[id])?>">删除</a></td>
</tr>
<?php }?>
</table>
</center>
</html> |
|