PHP - Retrieve MySQLi Table Using jQuery

In this tutorial we will create a Retrieve MySQLi Table using jQuery. This code will fetch the data in the database server base on the select button.The code use jQuery ajax to fetch MySQLi data without page refreshing and manipulate HTML forms to display the retrieve data in the table. This is a user-friendly kind of program feel free user 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 properties 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_ret, 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_ret");
  3.  
  4. if(!$conn){
  5. die("Error: Failed to connect to database!");
  6. }
  7. ?>

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 - Retrieve MySQLi Table Using jQuery</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <label>Select a table:</label>
  18. <button class="btn btn-primary" id="student">Student</button>
  19. <button class="btn btn-info" id="teacher">Teacher</button>
  20. <br /><br />
  21. <div id="result"></div>
  22. </div>
  23. <script src="js/jquery-3.2.1.min.js"></script>
  24. <script src="js/script.js"></script>
  25. </body>
  26. </html>

Creating the Main Function

This code contains the main function of the application. This code will automatically retrieve the array of data in the server when the button is clicked. To make this just copy and write these block of codes below inside the text editor, then save it as shown below student.php
  1. <table class="table table-bordered">
  2. <thead class="alert-info">
  3. <tr>
  4. <th>Student firstname</th>
  5. <th>Student lastname</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <?php
  10. require_once 'conn.php';
  11.  
  12. $query = mysqli_query($conn, "SELECT * FROM `student`") or die(mysqli_error());
  13. while($fetch = mysqli_fetch_array($query)){
  14. echo "<tr>
  15. <td>".$fetch['firstname']."</td>
  16. <td>".$fetch['lastname']."</td>
  17. </tr>";
  18. }
  19. ?>
  20. </tbody>
  21. </table>
teacher.php
  1. <table class="table table-bordered">
  2. <thead class="alert-info">
  3. <tr>
  4. <th>Teacher firstname</th>
  5. <th>Teacher lastname</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <?php
  10. require_once 'conn.php';
  11.  
  12. $query = mysqli_query($conn, "SELECT * FROM `teacher`") or die(mysqli_error());
  13. while($fetch = mysqli_fetch_array($query)){
  14. echo "<tr>
  15. <td>".$fetch['firstname']."</td>
  16. <td>".$fetch['lastname']."</td>
  17. </tr>";
  18. }
  19. ?>
  20. </tbody>
  21. </table>
script.js Note: To make the script works make sure you save this file inside the js directory.
  1. $(document).ready(function(){
  2. $('#student').on('click', function(){
  3. $.ajax({
  4. url: 'student.php',
  5. type: 'POST',
  6. data: {res: 1},
  7. success: function(data){
  8. $('#result').empty();
  9. $('#result').append(data);
  10. }
  11. });
  12. });
  13.  
  14. $('#teacher').on('click', function(){
  15. $.ajax({
  16. url: 'teacher.php',
  17. type: 'POST',
  18. data: {res: 1},
  19. success: function(data){
  20. $('#result').empty();
  21. $('#result').append(data);
  22. }
  23. });
  24. });
  25. });
There you have it we successfully created Retrieve MySQLi Table using jQuery. 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!

Add new comment