Related Posts
CodeIgniter 4 Installation
We can install CodeIgniter in the following ways: Manually: Download⇒ Extract ⇒ copy to server location Using Composer: composer create-project codeigniter4/appstarter <project-folder-name> Note: Composer installation... read more
CodeIgniter 4 Application Structure or Folder Structure
Default Directories A fresh install has following directories: /app, /system, /public, /writable, /tests. Each of these directories has a very specific... read more
how to create a custom constant file in ci4
-Create a folder in project root directory or app directory. I am creating a folder with name Includes in App folder:(C:xampp/htdocs/ci4/App/Includes) -Create... read more
CodeIgniter 4 Introduction
CodeIgniter 4 is an Application Development Framework - a toolkit - for people who build websites using PHP. CodeIgniter 4... read more
CodeIgniter 4 Server Requirements
PHP version 7.2 or newer is required, with the *intl* extension and *mbstring* extension installed. These extensions are enabled in... read more
Controllers in CodeIgniter 4
Controllers are the heart of your application, as they determine how HTTP requests should be handled. A Controller is a class... read more
How to set the value remains display in the field even some error comes codeigniter 4
to re-populate the input value use set_value('input_name') method, like below <input type="text" name="username" class='form-control' value='<?= set_value('username')?>'> read more
CodeIgniter 4 Theme Integration
In this session, we are going to explain How to integrate a theme in codeIgniter 4. By using View Layouts ... read more
CodeIgniter URLs
URLs in CodeIgniter are designed to be search-engine and human-friendly. Rather than using the standard “query-string” approach to URLs that is... read more
CodeIgniter 4 MVC Architecture
When we are learning any framework, it's very important to know about MVC architecure. If we can understand MVC flow,... read more