How to Load Library | Model | Helper in Codeigniter | Autoload files | Codeigniter tutorial for beginners step by step in hindi
In this tutoral we will Discuss how to load model,library and helper in codeigniter .There are 2 ways to load library, helper and model in codeigniter
How To Load Library in codeigniter
autoload.php file
The library key of the config array is used to load the library in the autoload.php
$autoload['libraries'] = array('library_name');
Current controller constructr :
public function __construct()
{
parent::__construct();
$this->load->libraries('library_name');
}
How To Load helper in codeigniter :
autoload.php file
The helper key of the config array is used to load the helper in the autoload.php
$autoload['helper'] = array('helper_name');
Current controller constructr :
public function __construct()
{
parent::__construct();
$this->load->model('helper_name');
}
How To Load Model in codeigniter
autoload.php file
The model key of the config array is used to load the model in the autoload.php
$autoload['model'] = array('model_name');
Current controller constructr :
public function __construct()
{
parent::__construct();
$this->load->model('model_name');
}
Related Tutorials
Tutorial Topics
- Intorducation of Codeigniter Tutorial - Codeigniter Tutorial For Beginners Step By Step in Hindi
- What is Codeigniter And What Is Framework - Codeigniter Tutorial For Beginners Step By Step in Hindi
- how to install codeigniter in xampp windows -Codeigniter Tutorial For Beginners Step by Step in Hindi
- Codeigniter Application Architecture - Codeigniter Directory Structure-Codeigniter Tutorial for Beginners Step by Step in Hindi
- What is MVC Architecture - Codeigniter Tutorial for Beginners Step by Step in Hindi
- Basic Component Of Codeigniter - Codeigniter tutorial for beginners step by step in hindi
- How to set Base url in Codeigniter Config File| Codeigniter tutorial for beginners step by step in hindi
- Database Configuration in Codeigniter |Codeigniter tutorial for beginners step by step in hindi
- How to Load Library | Model | Helper in Codeigniter | Autoload files | Codeigniter tutorial for beginners step by step in hindi
- How to Remove Index.PHP in Codeigniter using htaccess - Codeigniter tutorial for beginners step by step in hindi
- What is Helper in Codeigniter - Codeigniter tutorial for beginners step by step in hindi
- What is URL Helper in codeigniter - What is Helper in Codeigniter - Codeigniter tutorial for beginners step by step in hindi