php - codeigniter pagination setup image? -
i have problem please me, find in google how solve problem cannot see, problem is.
i have image @ header, when @ page 1 (pagination), image still have, when go next page (pagination) image gone, think problem @ link not know how handle it.
public function listtender(){ //pagination settings $config['base_url'] = site_url('tender/listtender'); $config['total_rows'] = $this->db->count_all('tender'); $config['per_page'] = "8"; $config["uri_segment"] = 3; $choice = $config["total_rows"] / $config["per_page"]; $config["num_links"] = floor($choice); }
Comments
Post a Comment