D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
alumni
/
application
/
controllers
/
Filename :
Home.php
back
Copy
<?php /** * Description of User * * @author Softpro India Pvt. Ltd. */ class Home extends CI_Controller { //put your code here public function __construct() { parent::__construct(); $this->load->model("admin/BranchManagement"); } public function index() { $viewData["branch"] = $this->BranchManagement->getAllBranches()->result(); $this->load->view("home",$viewData); $this->load->view("footer"); } }