三CI框架之一个最简单的页面
Posted tianpan2019
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三CI框架之一个最简单的页面相关的知识,希望对你有一定的参考价值。
一、在CI框架里面的controllers
<?php defined(‘BASEPATH‘) OR exit(‘No direct script access allowed‘); class Welcome extends CI_Controller public function index() //显示welcome_message.php文件 $this->load->view(‘welcome_message‘);
二、在view里面
<?php defined(‘BASEPATH‘) OR exit(‘No direct script access allowed‘); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>我是标题</title> </head> <body> 曾经沧海难为水,除却巫山不是云。<br> 取次花丛懒回顾,半缘修道半缘君。 </body> </html>
以上是关于三CI框架之一个最简单的页面的主要内容,如果未能解决你的问题,请参考以下文章