我正在尝试显示数据库中的记录并将它们默认为每周记录。例如,我想让记录默认为 2013 年 11 月 - 2013 年 11 月 7 日(从现在起一周后),然后单击上一个链接 10 月 25 日 - 10 月 31 日(2013 年)和下一个链接 11 月 8 日 - 2013 年 11 月 14 日
我正在使用 php 和 CodeIgniter。任何可以帮助我的页面的帮助或链接将不胜感激。
我现在所做的就是显示所有记录并使用分页显示每页 7 个字段,但我需要每周显示并默认为从周五到周四的当前一周。
public function index()
{
//Count all records
$shopID= $this->uri->segment(2);
session_id($shopID);
$this->db->where('BDP_COST_CENTRE_NUMBER', $shopID);
$count = $this->db->count_all_results('WHOUSE1.DLY_BWR_DLY_PERFORMANCE');
//Set up pagination
$perpage = 7;
if ($count > $perpage)
{
$config['base_url'] = 'http://bwr/index.php/daily_shop_performance/' . $shopID . '/';
$config['total_rows'] = $count;
$config['per_page'] = $perpage;
$config['uri_segment'] = 3;
$this->pagination->initialize($config);
$this->data['pagination']=$this->pagination->create_links();
$offset = $this->uri->segment(3);
} else {
$this->data['pagination']='';
$offset = 0;
}
$shopID= $this->uri->segment(2);
$this->db->where('BDP_COST_CENTRE_NUMBER', $shopID);
$this->db->limit($perpage, $offset);
**$this->data['shops_performances'] = $this->performance_m->get();**
$this->data['subview'] = 'page/performance_page';
$this->load->view('_layout_main', $this->data);
}