CRUD (Create Read Update Delete) in a Laravel 7

CRUD stands for Create, Read, Update, and Delete. This needs when working with the database data.

With this operation, a user can perform its action, and the changes will be saved in the database.

In this tutorial, I show how you can select, insert, update, and delete a record from the MySQL database with Laravel 7.

CRUD (Create Read Update Delete) in a Laravel 7

Read more

How to install CodeIgniter 4 on Windows and Mac

CodeIgniter is a popular PHP framework that helps developers build dynamic and robust web applications quickly and efficiently. With its latest version, CodeIgniter 4, developers can enjoy improved performance, enhanced security, and a more modular architecture.

In this tutorial, I show how you can install the Codeigniter 4 project on Windows and Mac.

How to install CodeIgniter 4 on Windows and Mac

Read more

Edit Delete DataTables record with AJAX and PHP

With the use of the DataTables jQuery plugin, you can list your records in pagination format.

You can add HTML elements like – buttons, link, image, etc with a record.

For this need to pass element in HTML string format from the PHP script.

In this tutorial, I show how you can add edit and delete buttons in the Datatables AJAX pagination with PHP.

NOTE – I am using the Bootstrap modal to update a record.

Edit delete DataTables record with AJAX and PHP

Read more