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錯誤
嚴重性:注意
消息:Array對字符串的轉換
文件名:控制器/ 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>
}
在第一頁上可以看到分頁。當我試圖調用或點擊第二或下一個按鈕此錯誤顯示 **遇到 甲PHP錯誤 嚴重性:注意 消息:Array對字符串的轉換 文件名:控制器/ content.php 行號:64 ** ,也忘記了循環變量 消息:未定義的變量:鏈接 消息:未定義的變量:結果 –
這是64行?請說明你想清楚解決的問題。 –