Exemplo n.º 1
0
 function pagination()
 {
     $header = new header();
     $header->food('name');
     $page = str_replace('_', '/', $_REQUEST['page']);
     $content = file_get_contents('http://webnauan.net' . $page);
     $content = str_replace('googletag.cmd.push', '', $content);
     $data['content'] = $content;
     $this->load->view('food/category', $data);
 }