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 without having to be reloaded.

XMLHttpRequest object\’s properties

The following are the common properties of the XMLHttpRequest object:

The property and what it is

onReadyStateChange

When the readystate attribute changes, it\’s called. It cannot be used with requests that happen at the same time.

readyState

shows where the request is in its process. From 0 to 4, it goes.

0 UNOPENED open() is not run.

1 OPENED: open is called, but not send().

2: send() is called, and HEADERS RECEIVED is returned. Headers and status are now available.

3 LOADING Downloading data; the data are in responseText.

4 DONE The job is done completely.

reponseText

returns response as text.

responseXML

returns response as XML

 

XMLHttpRequest object methods

These are the most important methods of the XMLHttpRequest object:

Method and Explanation

void open (method, URL)

opens the request by giving the URL and either the get or post method.

void open (method, URL, async)

same as above, but specifies whether or not it is asynchronous.

void open (method, URL, async, username, password)

same as above, but the username and password are given.

void send ()

sends get request.

void send (string)

send post request.

setRequestHeader(header,value)

it adds headers to a request.

Related Article
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

PHP Tutorial – Complete Guide for Beginners to Advanced Welcome to the most comprehensive PHP tutorial available online at PHPOnline.in Read more

Introduction of PHP

Introduction to PHP – Learn PHP from Scratch with Practical Examples Welcome to your complete beginner's guide to PHP. Whether Read more

Syntax Overview of PHP

Syntax Overview of PHP (2025 Edition) Welcome to phponline.in, your one-stop platform for mastering PHP. This comprehensive, SEO-rich tutorial on Read more

Environment Setup in PHP

Setting Up PHP Environment (Beginner’s Guide) If you’re planning to learn PHP or start developing websites using PHP, the first Read more

Variable Types in PHP

PHP Variable Types: Complete Beginner's Guide to PHP Data Types Welcome to phponline.in, your trusted source for beginner-to-advanced level PHP Read more