PHP - Submit Data Without Page Refresh Using MySQLi

Language

In this tutorial we will create a Submit Data Without Page Refresh Using MySQLi. PHP is a server-side scripting language designed primarily for web development. It is a lean and consistent way to access databases. This means developers can write portable code much easier. It is mostly used by a newly coders for its user friendly environment. So Let's do the coding...

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_student, after that 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_student") 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 you 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 - Submit Data Without Page Refresh Using Ajax</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <button type="button" class="btn btn-success" data-toggle="modal" data-target="#form_modal"><span class="glyphicon glyphicon-plus"></span> Add Student</button>
  18. <br /><br />
  19. <table class="table table-bordered">
  20. <thead class="alert-success">
  21. <th>Firstname</th>
  22. <th>Lastname</th>
  23. <th>Age</th>
  24. <th>Gender</th>
  25. <th>Address</th>
  26. </thead>
  27. <tbody id="data" style="background-color:#fff;"></tbody>
  28. </table>
  29. </div>
  30. <div class="modal fade" id="form_modal" aria-hidden="true">
  31. <div class="modal-dialog">
  32. <div class="modal-content">
  33. <form method="POST">
  34. <div class="modal-header">
  35. <h3 class="modal-title">Add Student</h3>
  36. </div>
  37. <div class="modal-body">
  38. <div class="col-md-2"></div>
  39. <div class="col-md-8">
  40. <div class="form-group">
  41. <label>Firstname</label>
  42. <input type="text" id="firstname" class="form-control"/>
  43. </div>
  44. <div class="form-group">
  45. <label>Lastname</label>
  46. <input type="text" id="lastname" class="form-control"/>
  47. </div>
  48. <div class="form-group">
  49. <label>Age</label>
  50. <input type="number" min="0" max="200" id="age" class="form-control"/>
  51. </div>
  52. <div class="form-group">
  53. <label>Gender</label>
  54. <select class="form-control" id="gender">
  55. <option value="">--Please select an option--</option>
  56. <option value="Male">Male</option>
  57. <option value="Female">Female</option>
  58. </select>
  59. </div>
  60. <div class="form-group">
  61. <label>Address</label>
  62. <input type="text" id="address" class="form-control"/>
  63. </div>
  64. </div>
  65. </div>
  66. <div style="clear:both;"></div>
  67. <div class="modal-footer">
  68. <button type="button" id="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Save</button>
  69. <button class="btn btn-danger" type="button" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  70. </div>
  71. </div>
  72. </form>
  73. </div>
  74. </div>
  75. </div>
  76. <script src="js/jquery-3.2.1.min.js"></script>
  77. <script src="js/bootstrap.js"></script>
  78. <script src="js/script.js"></script>
  79. </body>
  80. </html>

Creating the PHP Query

This code contains the php query of the application. This code will store the data to the database server and retrieve it using ajax request. To do that just copy and write this block of codes inside the text editor, then save it as shown below. save_student.php
  1. <?php
  2. require 'conn.php';
  3.  
  4. $firstname = $_POST['firstname'];
  5. $lastname = $_POST['lastname'];
  6. $age = $_POST['age'];
  7. $gender = $_POST['gender'];
  8. $address = $_POST['address'];
  9.  
  10. mysqli_query($conn, "INSERT INTO `student` VALUES('', '$firstname', '$lastname', '$age', '$gender', '$address')") or die(mysqli_error());
  11.  
  12. echo "Save Data";
  13. ?>
data.php
  1. <?php
  2. require 'conn.php';
  3.  
  4. if(ISSET($_POST['res'])){
  5. $query = mysqli_query($conn, "SELECT * FROM `student` 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['age']."</td>
  12. <td>".$fetch['gender']."</td>
  13. <td>".$fetch['address']."</td>
  14. </tr>";
  15. }
  16. }
  17. ?>

Creating Main Function

This code contains the main function of the application. This code will send an ajax request to the database server without refreshing the web page for retrieving the result. To do that just copy and write this block of codes inside the text editor, then save it inside the js directory as script.js.
  1. $(document).ready(function(){
  2. displayData();
  3.  
  4. $('#save').on('click', function(){
  5. var firstname = $('#firstname').val();
  6. var lastname = $('#lastname').val();
  7. var age = $('#age').val();
  8. var gender = $('#gender').val();
  9. var address = $('#address').val();
  10.  
  11. if($('#firstname').val() == "" || $('#lastname').val() == "" || $('age').val() == "" || $('gender').val() == "" || $('address').val()){
  12. alert("Please complete the required field");
  13. }else{
  14. $.ajax({
  15. type: 'POST',
  16. url: 'save_student.php',
  17. data: {
  18. firstname: firstname,
  19. lastname: lastname,
  20. age: age,
  21. gender: gender,
  22. address: address
  23. },
  24. success: function(data){
  25. $("#form_modal").modal('hide');
  26. $('#firstname').val('');
  27. $('#lastname').val('');
  28. $('#age').val('');
  29. $('#gender').val('');
  30. $('#address').val('');
  31. alert(data);
  32. displayData();
  33. }
  34. })
  35. }
  36. });
  37.  
  38. function displayData(){
  39. $.ajax({
  40. type: 'POST',
  41. url: 'data.php',
  42. data: {res: 1},
  43. success: function(data){
  44. $('#data').html(data)
  45. }
  46. });
  47. }
  48. });
There you have it we successfully created Submit Data Without Page Refresh Using MySQLi. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment