How to Update table Structure using Migration in CodeIgniter 4

Migration makes table creation and managing them easier. Using this you can recreate tables or update a table without losing its data.

Read More
How to Create Tabs layout using JavaScript

Similar to accordion tabs are also used to group related data on the page. Only one tab content is visible at a time. It occupies less space on the page. In this tutorial, I show how you can create a simple tabs layout using JavaScript.

Read More
How to Create Custom Validation Rule in CodeIgniter 4

Validation rules help to validate the form. You don't need to write long if statement conditions for every

element. While validating your form elements if your requirement is not fulfilled with the inbuilt validation rules provided then you can create your own validation rules.

Read More
Add Google reCAPTCHA v2 to form in CodeIgniter 4

Google reCaptcha helps to protect the website against spam and bot submissions. It is mainly applied to login, registration, contact us, and add comment forms.

Read More