Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
load->library('session'); $this->load->model('Login_model'); $this->load->model('Country','country'); // Load post model $this->load->model('post'); // Per page limit $this->perPage = 4; // $this->perPage = 20; if (!$this->session->userdata('id')) { $this->session->set_flashdata('flash_data', 'You don\'t have access!'); redirect('Welcome'); } } public function index(){ $data = array(); // Get posts data from the database $conditions['order_by'] = "id DESC"; $conditions['limit'] = $this->perPage; $data['posts'] = $this->post->getRows($conditions); // Pass the post data to view $this->load->view('includes/customer_header'); $this->load->view('customers/index', $data); $this->load->view('includes/customer_footer'); } function loadMoreData(){ $conditions = array(); // Get last post ID $lastID = $this->input->post('id'); // Get post rows num $conditions['where'] = array('id <'=>$lastID); $conditions['returnType'] = 'count'; $data['postNum'] = $this->post->getRows($conditions); // Get posts data from the database $conditions['returnType'] = ''; $conditions['order_by'] = "id DESC"; $conditions['limit'] = $this->perPage; $data['posts'] = $this->post->getRows($conditions); $data['postLimit'] = $this->perPage; // Pass data to view //$this->load->view('includes/customer_header'); $this->load->view('customers/load-more-data', $data, false); //$this->load->view('includes/customer_footer'); } }