URI segment in Codeigniter4
We can fetch parts of the url in Codeigniter4 using the getSegments() function. This is similar to CI3 call $this->uri->segment function but with a slight …
Experiment with ease
We can fetch parts of the url in Codeigniter4 using the getSegments() function. This is similar to CI3 call $this->uri->segment function but with a slight …
CI4 has a helper for cookies management which contains some functions to implement the cookies. Let us see with an example. set_cookie function takes below …
Caching techniques in Codeigniter 4
Login is one of the basic procedure on a Web. Let us see how to write it using Codeigniter4. Here I have used CentOS combined …
Filters in CI4 are a great way to control the incoming and outgoing call to controllers.Filters have two methods before() and after(). The before() method …
Sending SMTP HTML mail from CI4 is a simplified process. Codeigniter 4 provides multiple configuration optionsto send email with charset, wordwrap, protocol option, encryptions, mail …
The basic requirement for CodeIgniter4 is to have php version 7.2 or higher.The manual installation is straight forward on a CentOS system. Step 1 : …