标签:doctype http load style lang base mic 一个 extend
一、在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>
标签:doctype http load style lang base mic 一个 extend
原文地址:https://www.cnblogs.com/tianpan2019/p/11129180.html