Articles → PHP CODEIGNITER → Autoload.PHP In Codeigniter
Autoload.PHP In Codeigniter
Purpose
Example
Click to Enlarge
<?php
class mymodel extends CI_Model
{
public function GetUsers()
{
//$this->load->database(); // Commenting the code
$q = $this
->db
->query("select * from Class;");
$result = $q->result();
return $result;
}
}
Output
Click to Enlarge