I just have started working with codeIgniter and want to know how things in CodeIgniter?
such as
-
Where is this extended class located?
class Mystations extends CI_Controller{ //--- class content } -
Where can find “load” and “model” ?
$this->load->model('user_model'); -
Though I’m aware of using CI active queries, I don’t know how things work in background or where mysql_conect is used in CI.
Since the source is hosted on GitHub, you can search the actual code to find what you’re after. For instance:
CI_Controller search : result (
system/core/Controller.php)function model search : result (
system/core/Loader.php)mysqli connnect search : result (
system/database/drivers/mysqli/mysqli_driver.php)