Skip to main content

Consuming RESTful Web Services using PHP

In our previous tutorial, we have explained how to Make Simple RESTful API with PHP. In this tutorial, we will explain how to consume RESTful API using PHP.

REST (Representational State Transfer) API has been getting popularity as it’s very simple and easy to use. The REST is stateless architecture that generally consists of clients, servers and HTTP operations known as request methods (GET, POST, PUT, DELETE).

Currently most of web applications are implemented with REST API as it’s best solution when the same data used by different applications. If you’re a PHP developer, you’re well aware about the importance of REST API when developing mobile applications.

So if you’re developing web application using REST API and looking for solution to consume RESTful web services, then you’re here at right place.

(more…)

Filter Search Result with Ajax, PHP & MySQL

In our previous tutorial, we have explained how to implement star rating system with Ajax, PHP & MySQL. In this tutorial, we will explain how to implement Filter Search Result with Ajax, PHP & MySQL.

Filter search result is a common feature of eCommerce website to provide relevant search result to user. The user can find the more relevant result from huge number of search records.

We will cover this tutorial step by step to implement live example with order data to search and filter search result with sorting order like Newest, Ascending, Descending, Processed order, Pending order, Cancelled order.

(more…)

Create Simple Form with Validation in React

In our previous React tutorial, we have explained file upload in React. In this tutorial, we will explain how to create form with validation in React.

HTML Form is an important part of web applications with inputs to allows to enter data to process at server end.

If you’re working with React and wants to create forms with validation then it’s very simple. You can easily create HTML Form with validation using React.

We will cover this tutorial step by step to create React application with required module installation to create form and implement client side validation with React.

(more…)

Simple React File Upload with Node.js

In our previous tutorial, we have explained how to upload multiple files with jQuery, PHP and MySQL. In this tutorial, you will learn how to implement file upload in React.

File upload is an important functionality of web applications to allow user to upload files. The file upload feature needed to upload user profile picture or avatar, create image gallery or upload document etc.

We will use Node server to handle file upload at server end in React application.

We will cover this tutorial step by step to create React application, install dependencies and then implement file upload in React application with example.

(more…)

Editable HTML Table with jQuery, PHP & MySQL

In our previous tutorial, we have explained how to implement Event Calendar with jQuery , PHP and MySQL. In this tutorial, you will learn how to implement Editable HTML Table with jQuery, PHP and MySQL.

Live Editable HTML Table or Inline HTML Table Edit is a feature of web applications to allow users to edit HTML table column value. This is very user friendly feature as makes possible to edit save particular value with reloading page.

So if you’re looking for implementing editable HTML table, then it’s very easy using jQuery TableEdit plugin. In this tutorial you will learn how to implement Editable HTML Table with jQuery, PHP and MYSQL. You would also like to checkout HTML Table Data Export to Excel with jQuery tutorial to export html table data to excel format.

We will use jQuery TableEdit plugin to make HTML table editable and handle edit save when editing done.

(more…)