DEV Community

Cover image for Steps of Codeigniter Processing
S3RG1096
S3RG1096

Posted on

Steps of Codeigniter Processing

The designing of the MVC based Codeigniter has enabled it to have a fast performance. It is possible thanks to the simplicity of the framework. And to go further into explanation, it has component singularity, dynamic installation and loose coupling.
As you have a glance at the model,the data flow seems simple indeed.
1.index.php is your php file that comes as default.In fact, php is the most widespread of all the backend languages, which helps developing e-commerce(online purchases, loans, etc.) and social media platforms.
2.Router decides the steps of document manipulation.
3.Cache file is the previously loaded info from the same source. When caching is enabled, there might be no need for further data loading.
4.If it's the time to pass to Application Controller, a security check is a must.
5.The last of the redirection process is the View. After the data goes through view it appears back in cache and then in your browser page.
The broadest of the components is the application controller, which includes scripts,helpers, libraries and plugins.

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay