ThinkPHP5显示数据库字段内容

2018-06-22 05:38:05来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1.在application文件夹下面的config.php中打开DEBUG。

2.修改tp5/application/index/controller/Index.php内容。

 1 <?php
 2 namespace app\index\controller;
 3 //引入系统数据类
 4 use think\Db;
 5 //引入系统控制器类
 6 use think\Controller;
 7 class Index extends Controller
 8 {
 9     public function index()
10     {        
11      //从数据库中读取数据
13 $data=Db::table('user_info')->select(); 14 //var_dump($data); 15 //分配数据给页面 16 $this->assign('data',$data); 17 //加载页面 18 return view(); 19 20 } 21 }

3.修改tp5/application/index/view/index/index.html页面内容。

 1 <!doctype html>
 2 <html>
 3 <head>
 4 <meta charset="utf-8">
 5 <title>无标题文档</title>
 6 </head>
 7 
 8 <body>
 9     <table width="200" border="1">
10       <tbody>
11         <tr>
12           <th>id </th>
13           <th>name </th>
14         </tr>
15           {volist name="data" id="value"}
16               <tr>
17                 <td>{$value.user_id}</td>
18                 <td>{$value.user_name}</td>
19           {/volist}
20       </tbody>
21 </table>
22     <h1>测试一下!</h1>
23 </body>
24 </html>

 4.在http://localhost/tp5/public/下直接查看结果。

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:[日常] nginx反代websocket

下一篇:php 品牌全车零件订购平台( 带采集数据 及 账号自动登陆【已绕过