本站资源全部免费,回复即可查看下载地址!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
1.在application文件夹下面的config.php中打开DEBUG。
2.修改tp5/application/index/controller/Index.php内容。[PHP] 纯文本查看 复制代码 <?php
namespace app\index\controller;
//引入系统数据类
use think\Db;
//引入系统控制器类
use think\Controller;
class Index extends Controller
{
public function index()
{
//从数据库中读取数据
$data=Db::table('user_info')->select();
//var_dump($data);
//分配数据给页面
$this->assign('data',$data);
//加载页面
return view();
}
}
3.修改tp5/application/index/view/index/index.html页面内容。
[PHP] 纯文本查看 复制代码 <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<table width="200" border="1">
<tbody>
<tr>
<th>id </th>
<th>name </th>
</tr>
{volist name="data" id="value"}
<tr>
<td>{$value.user_id}</td>
<td>{$value.user_name}</td>
{/volist}
</tbody>
</table>
<h1>测试一下!</h1>
</body>
</html>
4.在http://localhost/tp5/public/下直接查看结果。
|