码迷,mamicode.com
首页 > 其他好文 > 详细

页面静态化案例---数据列表静态化

时间:2018-10-09 21:35:53      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:账号   文件   res   nbsp   head   127.0.0.1   禁用   text   type   

<?php
ob_start();
if(file_exists(‘list.html‘)){
    //直接拿来用
    $content = file_get_contents("list.html");
    echo $content;
    die;
}
header("content-type:text/html;charset=utf-8");
//链接数据库
$link = mysqli_connect("127.0.0.1",‘root‘,‘root‘,‘08e‘);
//设置字符集
mysqli_query($link,‘set names utf-8‘);
//拼接sql
$sql = "select * from user";
//执行
$res = mysqli_query($link,$sql);

while($a = mysqli_fetch_assoc($res)){
    $data[] = $a;
}
?>
<table>
    <tr>
        <th>ID</th>
        <th>账号</th>
        <th>密码</th>
        <th>状态</th>
    </tr>

    <?php foreach($data as $k=>$v){ ?>
    <tr>
        <td><?php echo $v[‘id‘];?></td>
        <td><?php echo $v[‘username‘];?></td>
        <td><?php echo $v[‘password‘];?></td>
        <td><?php
            if($v[‘status‘]==1){
                echo "启用";
            }else{
                echo "禁用";
            }
            ?></td>
    </tr>
    <?php } ?>
</table>

<?php
//获取缓存内容
$content = ob_get_contents();
//写入缓存文件
file_put_contents("list.html",$content);
?>

 

页面静态化案例---数据列表静态化

标签:账号   文件   res   nbsp   head   127.0.0.1   禁用   text   type   

原文地址:https://www.cnblogs.com/hopelooking/p/9762679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!