How do I handle $_POST data with AJAX and PHP?
803 Aug 2024
Handling $_POST
data with AJAX involves sending data asynchronously from the client-side to the server-side without refreshing the page:
<form id="ajax-form">
<input type="text" name="name">
<input type="submit" value="Submit">
</form>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function() {
$("#ajax-form").submit(function(event) {
event.preventDefault();
$.ajax({
type: "POST",
url: "ajax_handler.php",
data: $(this).serialize(),
success: function(response) {
alert(response);
}
});
});
});
</script>
In ajax_handler.php
, handle the $_POST
data:
<?php
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$name = $_POST["name"];
echo "Received: " . htmlspecialchars($name);
}
?>
AJAX allows for smooth and interactive web applications by handling form submissions and other requests asynchronously.
0 likes
Top related questions
Related queries
Latest questions
कौन सा फोन बेहतर है, वीवो या सैमसंग 2024?
26 Nov 2024 0
सेक्स करने के बाद कैसा महसूस होता है
26 Nov 2024 4
10 love 😘 शायरी
25 Nov 2024 0
Jio Bharat 5G खरीदे अब केवल 999 में, झक्कास फीचर्स के साथ मिलेगा 6 महीने का रिचार्ज फ्री
25 Nov 2024 5
यह किस देश का झंडा है कोई बता सकता है
25 Nov 2024 1
किस विटामिन की कमी से बाल झड़ने लगते हैं?
25 Nov 2024 4
सेक्स करना कैसा लगता है
25 Nov 2024 6
आपने मुंह में लन्ड लिया है कभी?
25 Nov 2024 8
सबसे पहले आपको किसने चोदा?
25 Nov 2024 10
किस किस ने भाभी को चोदा है?
25 Nov 2024 43