這個例子不涉及數據庫操做。在控制器中設置變量值,經過模板顯示該變量值。php
一、以第一個例子的文件夾及文件爲基礎。html
二、修改D:\wamp\www\MyWeb\Application\Home\Controller\IndexController.class.php:數據庫
<?phpthis
namespace Home\Controller;spa
use Think\Controller;htm
class IndexController extends Controller {it
public function index(){io
$name = 'ThinkPHP';function
$this->assign('name',$name);模板
$this->display();
}
}
三、修改D:\wamp\www\MyWeb\Application\Home\View\Index\index.html:
<html>
<head>
<title>Select Data</title>
</head>
<body>
hello, {$name}!
</body>
</html>
四、瀏覽網址:http://localhost/MyWeb/index.php/Home/Index/index.html
顯示內容:
hello, ThinkPHP!