As we all know CodeIgniter is a PHP light weight MVC framework .It provide us fast, flexible, and secure techniques to develop PHP based applications.Alpha is released but the available version is not recommended for production use. What is Code Igniter? Code Igniter is MVC based framework to build highly available and fast applications. It … Read More “What is New In CodeIgniter 4.x?” »
Category: Codeigniter Interview Questions
Codeigniter is MVC framework for developing web applications. Code Igniter provides Very clean and clear documentation, and loosely coupled structure where you can do experiments as per your convenient.
It is very easy to start with CI. Almost zero configuration. CI comes with ORM, Debug kit and many plugins. Now a days CI is being used to develop many big CRMs and applications. So Now a days CI developers are in demand and hence you can prepare for a role where CI is needed. We have Added many questions related to CI for different level of experiences.
In code igniter hooks are the points before and after the execution where we can call some specific functions. These functions are called hooks and points where we call hooks are called hook point. Hooks are useful when we have to make some changes through out the application , then we can do this without … Read More “What is Hook in CodeIgniter?” »
What is hook? CodeIgniter’s Hooks feature modify the core functionalities of the framework without changing the core files. For example, If you want to run a script right before your controllers get loaded, or right after or at any other location, you can use Hook. How many types of hooks are there in Code Igniter? … Read More “Top 10 Codeigniter Interview Questions for Experienced” »
How routing is beneficial in Code Igniter?Routing provides a way to alter your URL and redefine it according to you. It helps in security and SEO. We can create URL having keywords and phrases influential for SEO ranking. What is a helper?Helpers are the file having functions for specific purposes. We can directly call them … Read More “15 Advance Code Igniter Interview Questions and Answer” »
What is MVC? MVC is a three-tier architecture of application development approach.Almost the popular languages use this pattern. MVC provides Modular structure to an application. Three interconnected parts are Model, View, and Controller. M: Model, that means data handling and information interchange. Implement CRUD. V: view i.e. front end and representational parts, where user interacts … Read More “Code igniter Interview Questions and Answers” »