Ajax

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 works and how it flows From the above example, you can see that the XMLHttpRequest object is very important. The user sends a request from […]

How AJAX works? Read More »

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 JSON XMLHttpRequest JavaScript CSS and HTML/XHTML The content and style are shown with the help of these technologies. It is mostly used for showing off.

AJAX Technologies Read More »

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 Web-Application Model) A synchronous request makes the client wait until the operation is done, which means the browser won’t do anything. In this case, the

Synchronous vs Asynchronous – AJAX Read More »

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 amounts of data be sent back and forth between the server and the web page in the background. This lets web pages be updated at

What is AJAX Read More »

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. The following things are done with it: Sends information from the client behind the scenes takes the information from the server The page is updated

AJAX XMLHttpRequest Read More »

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, the code for the server is in the index.jsp file. AJAX Database Example How to make an ajax example with a database using jsp You

AJAX and MySQL – PHP Read More »

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 of technologies that work together, such as JavaScript, DOM, XML, HTML/XHTML, CSS, XMLHttpRequest, etc. AJAX lets you send and get data at different times without

PHP – AJAX Introduction Read More »

AJAX & PHP

What exactly is AJAX? AJAX is an acronym for Asynchronous JavaScript and XML. With the help of XML, HTML, CSS, and Java Script, AJAX is a new way to make web apps that are better, faster, and more interactive. Conventional web applications use synchronous requests to send and receive information from and to the server.

AJAX & PHP Read More »

Scroll to Top