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
)
application/libraries
. Read about extending here.application/models
. Read about models here.config/database.php
by providing your settings. You autoload it in config/autoloads.php
.Note that my answer mostly consists of refering to CodeIgniters User Guide. Their guides are really good and helps you very far on your own.
CodeIgniter + Google + knowing what to search for = Success!