- UID
- 1
- 贡献
- 844
- 金币
- 1540
- 主题
- 520
- 在线时间
- 333 小时
- 注册时间
- 2022-1-15
- 最后登录
- 2024-11-12
|
发表于 2022-11-30 14:29:00
| 572 |
0 |
显示全部楼层
|阅读模式
php获取数据库显示新闻内容案例附代码
步骤: 1、连接数据库 2、获取数据 3、遍历循环数据 代码如下:
- <style type="text/css">
- table{
- width:780px;
- border:solid 1px #000;
- margin:auto;
- }
- th,td{
- border:solid 1px #000;
- }
- </style>
- <body>
- <?php
- //1、连接数据库
- require './inc/conn.php';
- //2、获取数据
- $rs=mysqli_query($link,'select * from news order by id desc'); //返回结果集对象
- $list=mysqli_fetch_all($rs,MYSQLI_ASSOC); //将结果匹配成关联数组
- ?>
- <table>
- <tr>
- <th>编号</th> <th>标题</th> <th>内容</th> <th>时间</th> <th>修改</th> <th>删除</th>
- <!--3、循环显示数据-->
- <?php foreach($list as $rows):?>
- <tr>
- <td><?php echo $rows['id']?></td>
- <td><?php echo $rows['title']?></td>
- <td><?php echo $rows['content']?></td>
- <td><?php echo date('Y-m-d H:i:s',$rows['createtime'])?></td>
- <td><input type="button" value="修改" onclick=""></td>
- <td><input type="button" value="删除" onclick=""></td>
- </tr>
- <?php endforeach;?>
- </tr>
- </table>
- </body>
复制代码 运行结果
|
|