【发布时间】:2011-05-16 15:30:15
【问题描述】:
我有一个查询,它从数据库表中获取一条随机记录并将其保存在 $banner_text 虽然我无法在模板中显示该横幅文本。
下面是我的所有其他控制器扩展的 MY_Controller 代码,我想用它来发送 $banner_text 到任何正在构建的模板/布局。
class MY_Controller extends Controller {
function __construct() {
parent::Controller();
$this->load->model('banners_model');
//$this->output->enable_profiler(TRUE);
$this->template->set_theme('moovjob');
$this->template->set_layout('main');
//$this->banners_model->get_header();
//$this->template->title('Some title');
//$this->template->build('main');
}
}
【问题讨论】:
-
你能澄清你的问题吗?
标签: php oop codeigniter templating