设置首页模版ThinkPHP笔记

/ / 2016-02-01   阅读:2498
(1)控制器设置:/app/Home/Controller/IndexController.class.php <?php namespace Home\Controller; use Think\Controller; class IndexController extends Controller { &nbs...
(1)控制器设置:/app/Home/Controller/IndexController.class.php
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
    public function index(){
        $this->name = 'thinkphp'; // 进行模板变量赋值
  $this->display();
    }
}
(2)首页模版:/app/Home/View/Index/index.html
 <html>
 <head>
   <title>hello {$name}</title>
 </head>
 <body>
    hello, {$name}!
 </body>
</html>

上一篇:URL请求

下一篇:配置数据库

我要评论

昵称:
验证码:

最新评论

共0条 共0页 10条/页 首页 上一页 下一页 尾页
意见反馈