thinkphp 学习笔记二

动态网页与静态网页分离编写,实例1

在/application/index/controller先建立user.php文档,代码入下:

thinkphp 学习笔记二_第1张图片
user.php中的代码,assign()作用是向V层传递数据

在/application/index中建立保存v层的文件的文件夹view,在view中建立与User控制器名相同的文件夹User,在User文件夹中建立相同操作名index.html,如图:

thinkphp 学习笔记二_第2张图片
/application/index/User/index.html

在index.html中编写如下代码:

index.html代码

在浏览器输入地址:http://localhost/public/index.php/index/user,出现界面如下:


index.html在浏览器中的界面

你可能感兴趣的:(thinkphp 学习笔记二)