Sending POST Request to PHP Using Ajax Tutorial

In this tutorial we will create a Send POST Request using Ajax. This code will send a PHP post request when the user submits the form inputs. The code use jQuery ajax to send a request and immediately retrieve the MySQLi table row server without refreshing the web page and display it as readable data in the HTML table. This is a user-friendly kind of program feel free to use it in your program.

We will be using jQuery a JavaScript framework that design to simplify HTML DOM tree traversal and manipulation. It can retrieve DOM and manipulate each property of an element based on different criteria such as id, class, etc.

Getting Started:

First you have to download & install XAMPP or any local server that run PHP scripts. Here's the link for XAMPP server https://www.apachefriends.org/index.html.

And this is the link for the jquery that i used in this tutorial https://jquery.com/.

Lastly, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

Creating Database

Open your database web server then create a database name in it db_send.Thenn, navigate to the SQL Tab and copy/paste the SQL Script below and click Go.

  1. CREATE TABLE `member` (
  2. `firstname` varchar(50) NOT NULL,
  3. `lastname` varchar(50) NOT NULL,
  4. `address` varchar(50) NOT NULL

You can also use the provided SQL file along with the source code zip file. Yhe file is known as db_send.sql inside the db directory. To do this, click Import then locate the database file inside the folder of the application then click ok.

tut1

Creating the database connection

Open your any kind of text editor(notepad++, etc..). Then just copy/paste the code below then name it conn.php.

  1. <?php
  2. $conn = mysqli_connect("localhost", "root", "", "db_send") or die(mysqli_error());
  3. if(!$conn){
  4. die("Error: Failed to connect to database");
  5. }
  6. ?>

Creating The Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into your text editor, then save it as index.php.

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <body>
  8. <nav class="navbar navbar-default">
  9. <div class="container-fluid">
  10. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11. </div>
  12. </nav>
  13. <div class="col-md-3"></div>
  14. <div class="col-md-6 well">
  15. <h3 class="text-primary">PHP - Send POST Request Using Ajax</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <form method="POST">
  19. <div class="form-group">
  20. <label>Firstname</label>
  21. <input type="text" id="firstname" class="form-control"/>
  22. </div>
  23. <div class="form-group">
  24. <label>Lastname</label>
  25. <input type="text" id="lastname" class="form-control"/>
  26. </div>
  27. <div class="form-group">
  28. <label>Address</label>
  29. <input type="text" id="address" class="form-control"/>
  30. </div>
  31. <center><button type="button" id="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Save</button></center>
  32. </form>
  33. </div>
  34. <div class="col-md-8">
  35. <table class="table table-bordered">
  36. <thead class="alert-info">
  37. <th>Firstname</th>
  38. <th>Lastname</th>
  39. <th>Address</th>
  40. </thead>
  41. <tbody id="data" style="background-color:#fff;"></tbody>
  42. </table>
  43. </div>
  44. </div>
  45. <script src="js/jquery-3.2.1.min.js"></script>
  46. <script src="js/bootstrap.js"></script>
  47. <script src="js/script.js"></script>
  48. </body>
  49. </html>

Creating the PHP Query

This code contains the save function of the application. This code will store the form data into MySQLi database. To make this just copy and write these blocks of codes below inside the text editor, then save it as save.php.

  1. <?php
  2. require_once 'conn.php';
  3.  
  4. $firstname = $_POST['firstname'];
  5. $lastname = $_POST['lastname'];
  6. $address = $_POST['address'];
  7.  
  8. mysqli_query($conn, "INSERT INTO `member` VALUES('', '$firstname', '$lastname', '$address')") or die(mysqli_error());
  9.  
  10. echo "Data Sent!";
  11. ?>

Creating the Main Function

This code contains the main function of the application. This code will send a post request and display MySQLi data in a table when the button is clicked. To make this just copy and write these blocks of codes below inside the text editor, then save it as the file name about the scripts.

data.php
  1. <?php
  2. require 'conn.php';
  3.  
  4. if(ISSET($_POST['res'])){
  5. $query = mysqli_query($conn, "SELECT * FROM `member` ORDER BY `lastname` ASC") or die(mysqli_error());
  6. while($fetch = mysqli_fetch_array($query)){
  7. echo
  8. "<tr>
  9. <td>".$fetch['firstname']."</td>
  10. <td>".$fetch['lastname']."</td>
  11. <td>".$fetch['address']."</td>
  12. </tr>";
  13. }
  14. }
  15. ?>
script.js Note: To make the script works make sure you save this file inside the js directory.
  1. $(document).ready(function(){
  2. displayData();
  3.  
  4. $('#save').on('click', function(){
  5. var firstname = $('#firstname').val();
  6. var lastname = $('#lastname').val();
  7. var address = $('#address').val();
  8.  
  9. if($('#firstname').val() == "" || $('#lastname').val() == "" || $('address').val()){
  10. alert("Please complete the required field");
  11. }else{
  12. $.ajax({
  13. type: 'POST',
  14. url: 'save.php',
  15. data: {
  16. firstname: firstname,
  17. lastname: lastname,
  18. address: address
  19. },
  20. success: function(data){
  21. $('#firstname').val('');
  22. $('#lastname').val('');
  23. $('#address').val('');
  24. alert(data);
  25. displayData();
  26. }
  27. })
  28. }
  29. });
  30.  
  31. function displayData(){
  32. $.ajax({
  33. type: 'POST',
  34. url: 'data.php',
  35. data: {res: 1},
  36. success: function(data){
  37. $('#data').html(data)
  38. }
  39. });
  40. }
  41. });

DEMO

There you have it we successfully created Send POST Request using Ajax. I hope that this simple tutorial helps you to what you are looking for. For more updates and tutorials just kindly visit this site.

Enjoy Coding!

Add new comment