PHP
CodeIgniter 4 CRUD with MySQL
CRUD stands for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for the database. INSERT query is used to insert data in the database . SELECT Query is used to select a Read more…
CRUD stands for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for the database. INSERT query is used to insert data in the database . SELECT Query is used to select a Read more…
As the name suggest, helper help with tasks. helper is just a collection of functions. In this post we will learn how we can create custom helper in CodeIgniter. There are two types of helper Read more…