|
$this->db->select('name');
$this->db->from('ceshi');
$query=$this->db->get('ceshi');
$viewdata['ceshi'] = $query->result();
$this->load->view('blogview',$viewdata);
数据库:ceshi
表:ceshi
字段:id name
想把数据库里的内容显示出来,请教!
A PHP Error was encounteredSeverity: Notice
Message: Undefined property: Blog:db
Filename: controllers/blog.php
Line Number: 18
报错,我该怎么解决? |
|