PHP MySQL Highcharts – Compare Data using Column Chart

Highcharts

In this tutorial, we will go over the demonstration of php mysql highcharts example. you can understand a concept of highcharts php dynamic data. highcharts provides various types of beautiful chart components. It is helpful to present data in an interactive graphical representation. There are pie charts, bar charts, column charts, line charts, and many […]

How to Make Restful Webservices API in PHP with MySQL

Restful Web Services in PHP

Hi Guys, Today I’m going to create very simple Login & Signup Restful Webservices using PHP, without using any Framework or Library. Using Core PHP, there are many straightforward ways to directly write Webservices in a single File or each Webservice in a single File but keep in mind that code organization is one of the most important programming practice. That […]

Insert Checkbox values using Ajax Jquery in PHP

Insert Checkbox values using Ajax Jquery in PHP

If you are looking for tutorial on how can we insert checkbox values to mysql table by using Ajax with JQuery in PHP without page refresh. Suppose you have working on any web application and in that application when user check the checkbox then at that time the value of that checkbox must be insert […]

How can I find matching values in two arrays in PHP?

How do you check two arrays have the same elements?

This tutorial explains how can i find matching values in two arrays in php. I have kept this article very simple so that anyone can implement on their web page. The array_intersect() function compares the values of two (or more) arrays, and returns the matches. This function compares the values of two or more arrays, […]

How to Validate Password Strength in PHP

PHP Password Validation Check for Strength

The below quick example validates the password field values posted via a form. First, it checks if both the password fields are not empty. Then, it applies a regex-based condition to validate the passwords. When the user provides their account password, it is always recommended to validate the input. Password strength validation is very useful […]