Contact Form

Name

Email *

Message *

Cari Blog Ini

Ajax Javascript Post Php

How to Grab Data from Ajax POST Requests

Introduction

AJAX (Asynchronous JavaScript And XML) is a technique for creating interactive web applications. It allows you to make requests to the server without having to reload the entire page. This makes it ideal for tasks such as updating parts of a page, sending data to the server, or loading new content.

Grabbing Data from POST Requests

When making a POST request in AJAX, you can grab data using either $_REQUEST or $_POST. $_REQUEST contains both $_GET and $_POST data, while $_POST contains only POST data. To access the data from a POST request, you can use the following syntax: ```php $data = $_POST['name_of_input']; ``` For example, if you have an input field with the name "username", you can access the value of that field using the following code: ```php $username = $_POST['username']; ```

Example

The following example shows how to grab data from a POST request using AJAX: ```html
``` In this example, the submitForm() function is called when the form is submitted. The function creates a data object with the values of the username and password input fields. The data object is then sent to the login.php script using an XMLHttpRequest object. The login.php script will process the data and return a response. The onload event handler is called when the request is complete. If the request was successful, the response variable will contain the response from the server. You can then do something with the response, such as display it on the page or store it in a database.


Comments

More from our Blog