這篇文章主要介紹了CI(CodeIgniter)框架#視圖中載入視圖的方法,結合實例形式分析了CodeIgniter框架視圖載入相關操作技巧,需要的朋友可以參考下
本文實例講述了CI(CodeIgniter)框架視圖中載入視圖的方法。
##1:在Application\config\database.php檔案中設定好CodeIgniter 資料庫變數之後,緊接著在Application\config\config.php檔案中設定基礎URL。 /2:接下來建立預設的控制器
與視圖,建立控制器的目錄為:application\controllers\ 資料夾內,建立一個名為student.php 的控制器。view->student_index.phpCongratulations.Your initial setup is complate!
如果你造訪:localhost/CodeIgniter/index.php/student/index
# #the result will output:
class Student extends CI_controller{ public function construct(){ parent::construct(); } public function index(){ $date['title']="Classroom:Home Page"; $date['headline']="Welcome to the Classroom Management System"; $date['include']="Student_index"; $this->load->view('template',$date); } }
以上是CI框架視圖中載入視圖的方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!