This tutorial help to create AJAX call with PHP and JavaScript. jQuery provide $.ajax() function used to get response from script through asynchronous/synchronous manner. AJAX stands for Asynchronous JavaScript and XML, and it allows you to fetch content from the back-end server asynchronously, without a page refresh. It’s provide dynamic data loading using backend script. […]
Jquery
How To Create Multilevel Drop Down Menu in Bootstrap
In this tutorial we will learn how to create multilevel drop down menu, normally bootstrap provided single level drop down menu list but 3.X bootstrap provided some classes to create well designed multilevel drop down menu. Bootstrap is very popular open source CSS framework.You can create awesome ui using in-built bootstrap css class.This css tutorial […]
Simple Ajax Pagination with PHP
In previous tutorial we have learn Simple tutorial of pagination in php, here we will learn php pagination with ajax.now days we are using ajax functionality for each request.We are using jQuery library for Ajax request and MySQL for database. We have following files: 1- db.php : This file contains db connection information. 2- pagination.php […]
How to Fill Dropdown with Non Ajax
In This simple PHP tutorial, I will let you know how to fill dropdown with non ajax manner. Normally we are refreshing dropdown based on selected master dropdown value, i.e we are using country and states two dropdown and based on country selected we will fill state dropdown. There are two method one is – […]
How to add color picker in jQuery/Html and Php
Now we are discussing how to add color picker in php/html project, for example if you want give a functionality to user select color from color picker for his background color profile,for this we will use third party color picker and call it on particular div area where we want display color picker. Step 1: […]