DataTables AJAX Pagination with Search and Sort in CodeIgniter 3

CodeIgniter already has a library for pagination. Which is easier to implement on the page. But you need to customize it to add extra functionality like – search, sorting, rows per page.

Datatables is a jQuery library that comes with all basic functionality that requires pagination.

Need to handle the request and return the response in the specified format.

In this tutorial, I show how you can implement Datatables AJAX pagination in CodeIgniter 3.

DataTables AJAX Pagination with Search and Sort in CodeIgniter 3

Read more

Delete Multiple selected Records with jQuery AJAX in CodeIgniter 3

One by One record deletion from the list is time-consuming and frustrating when you need to delete many records.

With the use of the checkboxes on the list, you can allow selecting multiple records. Only required to add a single delete button.

In this tutorial, I show how you can delete multiple records using jQuery AJAX in CodeIgniter.

Delete multiple selected records with jQuery AJAX in CodeIgniter 3

 

Read more

How to upload and Extract Zip file in CodeIgniter

In CodeIgniter, there is a zip library for creating a zip file but there is no library available for extracting the zip file.

To extract need to use ZipArchive Class.

Load the file and extract it to a location using the ZipArchive Class object.

In this tutorial, I show how you can upload and extract a zip file to a specific location in CodeIgniter.

How to upload and Extract Zip file in CodeIgniter

Read more