Read Table Data in CodeIgniter 3
<?php defined ( "BASEPATH" ) or exit ( "No direct script access allowed" ); class Contacts extends CI_Controller { public function __construct () { parent :: __construct (); } public function index () { $this -> load -> model ( "ContactsModel" ); $data [ "details" ] = $this -> ContactsModel -> getContacts (); $this -> load -> view ( "contacts_view" , $data ); $this -> load -> model ( "StudentsModel" ); $data [ "records" ] = $this -> StudentsModel -> getStudentsData (); $this -> load -> view ( "students_view" , $data ); } } Above File is application/controllers/Contacts.php File Below File is application/models/ContactsModel.php File <?php defined ( "BASEPAT...