控制器
public function livefeed($data = NULL) {
//echo $this->uri->segment(3);exit;
$this->load->model("home_model");
$config = array();
$config["base_url"] = base_url("content/livefeed/");
$config["total_rows"] = $this->home_model->record_count();
$config["per_page"] = 10;
$config["uri_segment"] = 3;
$config['num_links'] = 2;
$config['use_page_numbers'] = TRUE;
$config['page_query_string'] = TRUE;
$config['full_tag_open'] = '<p>';
$config['full_tag_close'] = '</p>';
$this->pagination->initialize($config);
$page = ($this->uri->segment(3)) ? $this->uri->segment(3) : 0;
$data["results"] = $this->home_model->getLiveFeed($config["per_page"], $page);
$data["links"] = $this->pagination->create_links();
$this->load->view("live", $data);
}
模型
public function getLiveFeed($limit = NULL, $start = NULL) {
$this->db->select('*');
$this->db->where('status', 1);
$this->db->from('rs_tbl_live');
$this->db->limit($limit, $start);
$query = $this->db->get();
if($query->num_rows() > 0) {
foreach ($query->result() as $row) {
$data[] = $row;
}
return $data;;
}
return false;
}
查看
遇到PHP错误
严重性:注意
消息:数组到字符串转换
文件名:controllers / content.php
行号:64
foreach( $results as $rowTV){
<div class="unit item movie-item pull-left" data-key="<?=$rowTV->id;?>"><a href="" class="ChannelCov"> <img src='<?=IMAGE_PATH.$rowTV->img;?>' width="100%"
alt="#LifeIsMusic <?=$rowTV->name;?>" title="<?=$rowTV->name;?>" /> </a>
<h2> <a href=""> <?=$rowTV->name;?> </a> </h2>
</div>
}
答案 0 :(得分:0)
使用此
编辑模型public function getLiveFeed($limit = NULL, $start = NULL) {
$this->db->select('*');
$this->db->where('status', 1);
$this->db->from('rs_tbl_live');
$this->db->limit($limit, $start);
$query = $this->db->get();
if($query->num_rows() > 0) {
return $query;
} else {
return false;
}
}
在视图显示中像这样。
<?php foreach ($results->result() as $rowTV) { ?>
<div class="unit item movie-item pull-left" data-key="<?=$rowTV->id;?>">
<a href="" class="ChannelCov">
<img src='<?=IMAGE_PATH.$rowTV->img;?>' width="100%" alt="#LifeIsMusic <?=$rowTV->name;?>" title="<?=$rowTV->name;?>" />
</a>
<h2><a href=""><?=$rowTV->name;?></a></h2>
</div>
<?php } ?>