D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
ci_panel
/
application
/
controllers
/
Filename :
Home.php
back
Copy
<?php class Home extends CI_Controller { // Index page public function index() { # code... $data = []; $this->load->model('Slider_model'); $this->load->model('Notification_model'); $this->load->model('Gallery_model'); $slider_front = $this->Slider_model->frontSlider(); $latest_notice = $this->Notification_model->LatestNotice(); $galHome = $this->Gallery_model->galHome(); $data['slider'] = $slider_front; $data['notice'] = $latest_notice; $data['gallery'] = $galHome; $this->load->view('user/home', $data); } }