这是我的
模型
public function get_news($NewsId= FALSE)
{
if ($NewsId === FALSE)
{
$this->db->select('*');
$this->db->from('news');
$this->db->where('Status' , 1);
$this->db->where('Language' , 2);
return $query->result_array();
$config['per_page']; $this->uri->segment(3);
}
$query = $this->db->get_where('news', array('NewsId' => $NewsId));
return $query->row_array();
控制器
public function single($NewsId)
{
$data['news_item'] = $this->news_model->get_news($NewsId);
if (empty($data['news_item']))
{
show_404();
}
$data['NewsId'] = $data['news_item']['NewsId'];
$this->load->view('news/single', $data);
}
查看
<?php echo $news_item['TittleNews'];?>
我有其他观点,即foreach我所有的新闻表,我希望创建阅读更多我已经创建我的代码它工作正常 想要使用NewsId以及另一个列进行更多阅读,这意味着首先检查NewsId,然后检查其他列,然后在我的视图中显示单独的
答案 0 :(得分:0)
你可以使用这样的模型方法:
function getBy($data){
foreach($data as $key=>$value){
$this->db->where($key,$value);
}
$query = $this->db->get('users_table');
return $query->row(); //or $query->result(); as you want
}
然后你用
来调用它$this->model->getBy(
array(
'username'=>'Mark',
'id'=>'90',
'email'=>'asd@asd.com'
);
);
显然你可以尽可能地扩展模型方法