|
楼主 |
发表于 2011-2-11 12:21:40
|
显示全部楼层
大小写好像没问题:
contrller:
文件名:home.php
class Home extends Controller{
function Home(){
parent::controller();
$this->load->helper('url');
}
function index(){
$this->load->model('information_model');
$this->load->model('news_model');
$event = $this->information_model->list_events('COUNT_TOP_EVENTS');
$news = $this->news_model->list_news();
$ticket_info = $this->information_model->list_ticket_info();
$pickup_event = $this->information_model->list_pickup_event();
-------------------------------------------------
model
文件名:information_model.php
class Information_model extends Model {
function Information_model()
{
parent::Model();
$this->config->load('bnlc_config');
}
function display_sql($str) {
$debug = $this->config->item('DEBUG');
if (strcmp($debug, 'ON') == 0) {
echo $str . " " . $this->db->last_query() . "<br />";
}
} |
|