PHP - Remove Multiple Rows Using MySQLi

In this tutorial we will create a Remove Multiple Rows Using MySQLi. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. 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_remove, 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_remove');
  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 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 - Remove Multiple Rows Using MySQLi</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 Member</button>
  18.                 <br /><br />
  19.                 <table class="table table-bordered">
  20.                         <form method="POST" action="remove.php">
  21.                                 <thead class="alert-info">
  22.                                         <tr>
  23.                                                 <th># Select All <input type="checkbox" onclick="selectedCheckbox(this)" /> </th>
  24.                                                 <th>Firstname</th>
  25.                                                 <th>Lastname</th>
  26.                                                 <th>Address</th>
  27.                                         </tr>
  28.                                 </thead>
  29.                                 <tbody style="background-color:#fff;">
  30.                                         <?php
  31.                                                 require 'conn.php';
  32.                                                 $query = mysqli_query($conn, "SELECT * FROM `member`") or die(mysqli_error());
  33.                                                 $count = mysqli_num_rows($query);
  34.                                                 while($fetch = mysqli_fetch_array($query)){
  35.                                         ?>
  36.                                         <tr>
  37.                                                 <td><input type="checkbox" name="check[]" onclick="countCheckbox()" value="<?php echo $fetch['mem_id']?>"></td>
  38.                                                 <td><?php echo $fetch['firstname']?></td>
  39.                                                 <td><?php echo $fetch['lastname']?></td>
  40.                                                 <td><?php echo $fetch['address']?></td>
  41.                                         </tr>
  42.                                         <?php
  43.                                                 }
  44.                                         ?>
  45.                                 </tbody>
  46.                                 <?php
  47.                                         if($count > 0){
  48.                                 ?>
  49.                                         <tfooot>
  50.                                                 <tr>
  51.                                                         <td colspan="4"><button name="remove" class="btn btn-danger pull-right"><span id="count" class="badge">0</span> Remove</button></td>
  52.                                                 </tr>
  53.                                         </tfoot>
  54.                                 <?php                          
  55.                                         }
  56.                                 ?>
  57.                         </form>
  58.                 </table>
  59.         </div>
  60.         <div class="modal fade" id="form_modal" aria-hidden="true">
  61.                 <div class="modal-dialog">
  62.                         <div class="modal-content">
  63.                                 <form method="POST" action="save_member.php">
  64.                                         <div class="modal-header">
  65.                                                 <h3 class="modal-title">Add Member</h3>
  66.                                         </div>
  67.                                         <div class="modal-body">
  68.                                                 <div class="col-md-2"></div>
  69.                                                 <div class="col-md-8">
  70.                                                         <div class="form-group">
  71.                                                                 <label>Firstname</label>
  72.                                                                 <input type="text" class="form-control" name="firstname"/>
  73.                                                         </div>
  74.                                                         <div class="form-group">
  75.                                                                 <label>Lastname</label>
  76.                                                                 <input type="text" class="form-control" name="lastname"/>
  77.                                                         </div>
  78.                                                         <div class="form-group">
  79.                                                                 <label>Address</label>
  80.                                                                 <input type="text" class="form-control" name="address"/>
  81.                                                         </div>
  82.                                                 </div>
  83.                                         </div>
  84.                                         <div style="clear:both;"></div>
  85.                                         <div class="modal-footer">
  86.                                                 <button class="btn btn-primary" name="save"><span class="glyphicon glyphicon-save"></span> Save</button>
  87.                                                 <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  88.                                         </div>
  89.                                 </form>
  90.                         </div>
  91.                 </div>
  92.         </div>
  93. <script src="js/jquery-3.2.1.min.js"></script>
  94. <script src="js/bootstrap.js"></script>
  95. <script src="js/script.js"></script>
  96. </body>
  97. </html>

Creating PHP Query

This code contains the php query of the application. This code will save the data inputs tp the database server. To do that just copy and write this block of codes inside the text editor, then save it as save_member.php.
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['save'])){
  5.                 $firstname = $_POST['firstname'];
  6.                 $lastname = $_POST['lastname'];
  7.                 $address = $_POST['address'];
  8.                
  9.                 mysqli_query($conn, "INSERT INTO `member` VALUES('', '$firstname', '$lastname', '$address')") or die(mysqli_error());
  10.                 header("location: index.php");
  11.         }
  12. ?>

Creating the Script

This code contains the script of the application. This code will count the checkboxes that will be remove by the user. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js folder.
  1. function selectedCheckbox(check){
  2.         var checkboxes = document.getElementsByName('check[]');
  3.         for(var i in checkboxes){
  4.                 checkboxes[i].checked = check.checked;
  5.         }
  6.        
  7.         var count = document.querySelectorAll('input[name="check[]"]:checked').length;
  8.         document.getElementById('count').innerHTML = count;
  9. }
  10.  
  11. function countCheckbox(){
  12.         var count = document.querySelectorAll('input[name="check[]"]:checked').length;
  13.         document.getElementById('count').innerHTML = count;
  14. }

Creating the Main Function

This code contains the main function of the application. This code will remove the data from the database base on the checked item in the row. To do this just copy and write these block of codes as shown below inside the text editor, then save it as remove.php.
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['remove'])){
  5.                 if(ISSET($_POST['check'])){
  6.                         $checked = $_POST['check'];
  7.                         for($i=0; $i < count($checked); $i++){
  8.                                 mysqli_query($conn, "DELETE FROM `member` WHERE `mem_id` = '$checked[$i]'") or die(mysqli_error());
  9.                         }
  10.                         echo "<script>alert('Members has been deleted!')</script>";
  11.                         echo "<script>window.location = 'index.php'</script>";
  12.                 }else{
  13.                         echo "<script>alert('Please check something first!')</script>";
  14.                         echo "<script>window.location = 'index.php'</script>";
  15.                 }
  16.         }
  17. ?>
There you have it we successfully created a Remove Multiple Rows 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!

Add new comment