|
用模型读取数据库信息,最终是要传给视图的,可是怎样传递给视图呢?
我的程序
控制器
___________________________________________
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Zixun extends CI_Controller {
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->model('content'); //这里是想从模型获取数据
$query=$this->content->get_content(1);
$this->load->view('zixun',$query ); //这里我想将从模型获得是数据传递给视图
}
模型
——————————————————————
<?php
class Content extends CI_Model
{
function __construct()
{
parent::__construct();
$this->load->database();
}
public function get_content($testid)
{ $this->db->where('id',$testid); //查询数据库
$this->db->select('*');
$query=$this->db->get('dili_u_m_content');
return $query->result();
}
}
?>
视图
——————————————————————————
<?php
$this->load->view("header");
$this->load->view("content");
?>
<?php
$this->load->view("footer");
?>
|
|