PHP Archive

In this tutorial we will implement the AJAX technique using jquery and PHP.We can use the traditional method using the javascript XHR but it is lot simpler when we use Jquery.In the example detailed below the webpage posts the data to server and updates it asyncronously without page refresh. How web pages post the form data to server: Usually the front end webpage is created using HTML in which the user can enter data using forms and submit it to the server.Meanwhile on the server side there exist a scripting component say for example PHP script that listen the request send from the html page and processes it .Once processing is complete the script send the data to client side which means webpage on the  browser.The webpage will then [&hellip

Read More...

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.for example, we can store 5 values of type int in an array without having to declare 5 different variables, each one with a different identifier. Instead of that, using an array we can store 5 different values of the same type, int for example, with a unique identifier

Read More...