PHP开发 新闻发布系统之新闻列表页面

创建新闻列表页 new_list.php 文件

我们发布的所有新闻都会在本页面显示


首先先将数据从数据库查找出来,代码如下


<?php
header("content-type:text/html;charset=utf8");
$conn=mysqli_connect("localhost","root","root","News");
mysqli_set_charset($conn,'utf8'); //设定字符集
$sql="select * from new";
$que=mysqli_query($conn,$sql);
?>

数据查出来了,我们要让我们的数据在HTML页面显示,需要用到HTML和PHP语言混编

代码如下

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>PHP中文网</title>
    <style>
        table{
            margin-top: 10px;
        }
    </style>
</head>
<body>
<a href="new.html">返回发布新闻</a>
<table border="1" cellspacing="0" width=360 >
    <tr>
        <th>编号</th>
        <th>文章标题</th>
        <th>文章内容</th>
        <th>编辑文章</th>
        <th>发布时间</th>
    </tr>
    <?php
    while($row=mysqli_fetch_array($que)){
    ?>
    <tr>
        <td><?php echo $row['id'];?></td>
        <td><?php echo $row['title']?></td>
        <td><?php echo $row['content']?></td>
        <td>
            <a href="new_ed.php?id=<?php echo $row['id']?>">修改</a>
            <a href="new_del.php?id=<?php echo $row['id']?>">删除</a>
        </td>
        <td><?php echo $row['cre_time']?></td>
        <?php }
        ?>
    </tr>
</table>
</body>
</html>

new_list.php 文件完整代码如下

<?php
header("content-type:text/html;charset=utf8");
$conn=mysqli_connect("localhost","root","root","News");
mysqli_set_charset($conn,'utf8'); //设定字符集
$sql="select * from new";
$que=mysqli_query($conn,$sql);
?>
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>PHP中文网</title>
    <style>
        table{
            margin-top: 10px;
        }
    </style>
</head>
<body>
<a href="new.html">返回发布新闻</a>
<table border="1" cellspacing="0" width=360 >
    <tr>
        <th>编号</th>
        <th>文章标题</th>
        <th>文章内容</th>
        <th>编辑文章</th>
        <th>发布时间</th>
    </tr>
    <?php
    while($row=mysqli_fetch_array($que)){
    ?>
    <tr>
        <td><?php echo $row['id'];?></td>
        <td><?php echo $row['title']?></td>
        <td><?php echo $row['content']?></td>
        <td>
            <a href="new_ed.php?id=<?php echo $row['id']?>">修改</a>
            <a href="new_del.php?id=<?php echo $row['id']?>">删除</a>
        </td>
        <td><?php echo $row['cre_time']?></td>
        <?php }
        ?>
    </tr>
</table>
</body>
</html>

上面的代码就可以把我们发布所有的新闻以表格的形式在HTML页面展示出来




继续学习
||
<a href="new.html">返回发布新闻</a> <table cellspacing="0" border="1" width="360"> <tbody><tr> <th>编号</th> <th>文章标题</th> <th>文章内容</th> <th>编辑文章</th> <th>发布时间</th> </tr> <tr> <td>1</td> <td>你好吗</td> <td>现在的你过的好吗</td> <td> <a href="new_ed.php?id=1">修改</a> <a href="new_del.php?id=1">删除</a> </td> <td>2016-11-03 09:31:26</td> </tr> </tbody></table>
提交重置代码