Introduction to HTML

HTML Introduction HTML is the most common language used to mark up Web pages. What does HTML mean? Hyper Text Markup Language is what HTML stands for. HTML is the…

How AJAX works?

The XMLHttpRequest object is how AJAX talks to the server. Let\'s look at the picture below to try to figure out how ajax works or how it flows. how Ajax…

AJAX Technologies

AJAX Technologies As was already said, ajax is not a single technology but a group of technologies that work together. Some AJAX technologies are: CSS and HTML/XHTML DOM XML or…

Synchronous vs Asynchronous – AJAX

The difference between synchronous and asynchronous Let\'s learn about the classic web application model and the ajax web application model before we learn about AJAX. Synchronous (Classic Web-Application Model) (Classic…

What is AJAX

Describe AJAX. AJAX = JavaScript and XML that run in parallel. AJAX is a way to make web pages that load quickly and change all the time. AJAX lets small…

AJAX XMLHttpRequest

Getting to know XMLHttpRequest Properties of XMLHttpRequest XMLHttpRequest Methods of XMLHttpRequest An object of XMLHttpRequest is used for communication between the client and the server that happens at different times.…

AJAX and MySQL – PHP

In this example, we are talking to the database. You don\'t need to do anything else. Just write the logic for the database in your server-side page. In this example,…

PHP – AJAX Introduction

With AJAX, you can change parts of a web page without having to load the whole page again. The letters AJAX stand for \"Asynchronous JavaScript and XML.\" It\'s a collection…

PHP XML DOM Parser

PHP can process XML files because it has a DOM parser built in. The DOM Parser for XML The DOM parser works like a tree. Check out the following part…

PHP XML Expat Parser

PHP can process XML documents because it has an XML Expat Parser built in. XML Expat Parser The Expat parser is one that works based on events. Check out the…