CI框架
Posted ready_dream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CI框架相关的知识,希望对你有一定的参考价值。
最简单的CI模型:
注意:模型需要用到数据库
配置文件在appcation/config.php
这里我们要用到数据库,需要将databases.php中的
相关参数填写一下,具体不再赘述。
关于MVC:
M层:
<?php class Nb_model extends CI_Model{ public function __construct() { $this->load->database(); } public function get(){ $query = $this->db->get(‘firm‘); return $query->result_array(); } }
C层:
$data[‘url‘] = $this->nb_model->get(); //var_dump($data);exit(); $this->load->view(‘nb‘,$data);
VIEW层:
<html> <head> <title>CI heiilo world</title> </head> <body> <!--循环输出数据--> <?php var_dump ($url); ?> </body> </html>
<html> <head> <title>CI heiilo world</title> </head> <body> <!--循环输出数据--> <?php foreach($url as $v): ?> <h1><?=$v[‘firm_id‘]?></h1> <?php endforeach?> </body> </html>
以上是关于CI框架的主要内容,如果未能解决你的问题,请参考以下文章