本文实例讲述了CI(CodeIgniter)框架视图中加载视图的方法。分享给大家供大家参考,具体如下:
CI做为php的一个轻量级框架,其自身具备很多优点,在此我重点想说的是视图中加载视图。
1:在Application\config\database.php文件中设置好CodeIgniter 数据库变量之后,紧接着在Application\config\config.php文件中设置基础 URL。例如我的基础 URL 是:http://localhost/codeigniter/
2:接下来创建默认的控制器与视图,创建控制器的目录为:application\controllers\ 文件夹内,创建一个名为 student.php 的控制器。并在 application\config\routes.php 内将其设置为默认控制器。
Controller->student.php
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);
}
}
views->template.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <title><?php echo $title;?></title> </head> <body> <h1><?php echo $headline;?></h1> <?php $this->load->view($include);?> </body> </html>
view->student_index.php
Congratulations.Your initial setup is complate!
如果你访问:http://localhost/CodeIgniter/index.php/student/index
the result will output:
Welcome to the Classroom Management System Congratulations.Your initial setup is complate!
更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《php优秀开发框架总结》、《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《Zend FrameWork框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。
CI框架(CodeIgniter)操作redis的方法详解这篇文章主要介绍了CI框架(CodeIgniter)操作redis的方法,结合实例形式详细分析了CodeIgniter框架针对redis数据库操作的相关
MixPHP、Yii和CodeIgniter的并发压力测试小结这篇文章主要给大家介绍了关于MixPHP、Yii和CodeIgniter的并发压力测试的相关资料,文中通过示例代码介绍的非常详细,
Laravel 5.4中migrate报错: Specified key was too long error的解决今天在执行laravel migrate时出现异常,找了好半天才找到问题所在,所以这篇文章主要给大家介绍了关于Laravel 5.4中migr
CI框架(CodeIgniter)公共模型类定义与用法示例这篇文章主要介绍了CI框架(CodeIgniter)公共模型类定义与用法,结合具体实例形式分析了CI框架公共模型类的定义以及基
CodeIgniter整合Smarty的方法详解这篇文章主要介绍了CodeIgniter整合Smarty的方法,结合实例形式分析了CodeIgniter3.0.3整合Smarty3.1.27的步骤与相关设置技巧
css中使用rgba和opacity设置透明度的区别(附图)这篇文章主要介绍了css中使用rgba和opacity设置透明度的两种方法,通过实例演示解释了两者之间的差别,需要的朋友可以