Question: What is CodeIgniter?
Codeigniter is an open source framework for web application on PHP. It is loosely based on MVC pattern and it is similar to CakePHP.
Question: What is Stable version of CodeIgniter?
Version: 3.0.4,
Date January 13, 2016
Question: In Which language CodeIgniter is written?
PHP
Question: What are the features of codeigniter? Open source framework
Light Weight
CodeIgniter is Extensible
Full Featured database classes
Question: How to access config variable in codeigniter?
$this->config->item('variable name');
Question: How to unset session in codeigniter?
$this->session->unsetuserdata('somename');;
Question: How do you get last insert id in codeigniter?
$this->db->insertid();;
Question: How to print SQL statement in codeigniter model??
$this->db->lastquery();;
Question: What are hooks in CodeIgniter?
CodeIgniter's Hooks feature provides a means to tap into and modify the inner workings of the framework without hacking the core files.
$hook['pre_controller'] = array( 'class' => 'MyClass', 'function' => 'Myfunction', 'filename' => 'Myclass.php', 'filepath' => 'hooks', 'params' => array('param1', 'param2', 'param3') );
Question: How to load model in CodeIgniter?
$this->load->model ('Model_Name');
Question: What helpers in CodeIgniter?
You can to execute below command.
RCPT To:
This identifies the receipient of the email message. This command can be repeated multiple times for a given message in order to deliver a single message to multiple receipients.
Question: What is offical Website URL?
http://www.codeigniter.com
Question: List out different types of hook in Codeigniter?
- post_controller_constructor
- pre_controller
- pre_sytem
- post_sytem
- cache_override
- display_override
- post_controller