Skip to main content

Product Search Filtering using Ajax, PHP & MySQL

Product Filtering is an important functionality of eCommerce websites to allow users to filter products listing according to requirement.

So if you’re looking for solution to implement product search filtering in your project then you’re here at right place. In our previous tutorial, you have learned to implement your own captcha script in PHP. In this tutorial you will learn how to implement Product Search Filtering using Ajax, PHP & MySQL.

We will cover this tutorial with live example with product filtering functionality just like eCommerce website to filter product with categories, brands, size, material and sort with latest product and price.


(more…)

Build Reusable Captcha Script with PHP

A CAPTCHA(Completely Automated Public Turing test to tell Computers and Humans Apart) is a type of challenge code that used in web applications to determine that the action is done by human being.

Captcha code is a combination of some readable text with some distorted shapes to be read only by human being to confirm that the user is not a bot.

There are many third party resources available to easily add Captcha to your web application. But if you’re looking for creating your own custom Captcha code to use in your project then you’re here right place. In this tutorial, you will learn how to create your own reusable Captcha script using PHP to user in your future projects.

We will explain this tutorial step by step with live example to implement Captcha with PHP. We will create a HTML form with input text, Captcha image and submit button to display Captcha and enter into input text to validate form submission with valid Captcha code.

(more…)

Create RESTful API using CodeIgniter

REST (Representational state transfer) API is a set of methods like GET, PUT, POST, DELETE to create web services. The RESTful Web services allow to request to access and manipulate textual representations of data using uniform and predefined set of stateless methods. Web services are useful when develop a application for web and mobile.

In our previous tutorial, you have learned how to create Restful API using PHP and MySQL. In this tutorial, you will learn how to create RESTful API using CodeIgniter.

We will cover this tutorial to create RESTful API with methods GET, PUT, POST, DELETE with live example.

(more…)

DataTables Add Edit Delete with CodeIgniter

DataTables is a popular Query JavaScript library to create dynamic HTML table with advance features like pagination, sorting, search etc.

In our previous tutorial about Datatables Add Edit Delete with Ajax, PHP & MySQL and get huge response from our readers. Many of them requested for the tutorial to implement DataTables with CodeIgniter. So here in this tutorial, you will learn how to implement Datatables Add Edit Delete with CodeIgniter.

We will cover tutorial step by step to handle DataTables server side processing with CodeIgniter to display records. We will implement functionality to add new record and display in DataTables. We will also implement functionality to edit and delete records from DataTables and refresh Datatables without page reload.

(more…)

Create Simple Pagination in Angular 8

Pagination is an user friendly feature of web applications to show huge number of records into number of pages. The pagination is implemented in a way to fetch only records that needs to be displayed on a page to improve performance of the application.

If you’re looking for implementing pagination in Angular 8 then you’re here at right place. In our previous tutorial you have learned how to implement datatables in Angular 8. In this tutorial you will learn how to implement simple pagination in Angular 8. (more…)

How to Use DataTables in Angular 8

jQuery DataTables is a popular jQuery library to display data in grid table. The DataTables convert simple HTML table into feature rich HTML Table with advance options like searching, sorting and pagination.

So if you’re thinking about integrating jQuery DataTables in your Angular 8 project then you’re here at right place. In our previous Angular 8 tutroal, you have learned how to create forms with validation in Angular 8. In this tutorial you will learn how to create Angular 8 project and integrate jQuery DataTables using angular datatable components.

We will cover this tutorial step by step to load create Angular 8 project and load required modules to integrate jQuery Datatables. We will also implement to make REST API HTTP call to load dynamic data from server end to display in jQuery DataTables. (more…)