Deleting Multiple Rows using Checkbox in PHP/MySQLi
Submitted by nurhodelta_17 on Friday, September 22, 2017 - 11:11.
This tutorial will teach you how to delete multiple MySQL Table rows using checkbox in PHP/MySQLi. I've use bootstrap and modal in this tutorial but take note that they are hosted so need internet connection for them to work.
And that ends this tutorial. If you have any comments or questions, feel free to message me or comment below. Hope this helps. Happy Coding :)
Creating our Database
First step is to create our database. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "sample". 3. After creating a database, click the SQL and paste the below code. See image below for detailed instruction.- CREATE TABLE `user` (
- `userid` INT(11) NOT NULL AUTO_INCREMENT,
- `firstname` VARCHAR(30) NOT NULL,
- `lastname` VARCHAR(30) NOT NULL,
- `address` VARCHAR(100) NOT NULL,
- PRIMARY KEY(`userid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Creating our Connection
Next, we create our connection to our database. This will serve as the bridge between our forms and database. We name this as conn.php.- <?php
- //MySQLi Procedural
- if (!$conn) {
- }
- ?>
index.php
This is the page where we show our sample table. Also, for you to further practice the delete function, I've added Add New function.- <!DOCTYPE html>
- <html>
- <head>
- <title>PHP/MySQLi Deleting Multiple Rows using Checkbox</title>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
- <style>
- input[type="checkbox"] {
- transform:scale(2, 2);
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div style="height:50px;"></div>
- <div class="well" style="margin:auto; padding:auto; width:80%;">
- <span style="font-size:25px; color:blue"><center><strong>PHP/MySQLi Deleting Multiple Rows using Checkbox</strong></center></span>
- <div style="height:20px;"></div>
- <table class="table table-striped table-bordered table-hover">
- <thead>
- <th></th>
- <th>Firstname</th>
- <th>Lastname</th>
- <th>Address</th>
- </thead>
- <form method="POST" action="delete.php">
- <tbody>
- <?php
- include('conn.php');
- ?>
- <tr>
- <td align="center"><input type="checkbox" value="<?php echo $row['userid']; ?>" name="userid[]"></td>
- <td><?php echo $row['firstname']; ?></td>
- <td><?php echo $row['lastname']; ?></td>
- <td><?php echo $row['address']; ?></td>
- </tr>
- <?php
- }
- ?>
- </tbody>
- </table>
- <a href="#addnew" data-toggle="modal" class="btn btn-primary"><span class="glyphicon glyphicon-plus"></span> Add New</a> || <button type="submit" class="btn btn-danger"><span class="glyphicon glyphicon-trash"></span> Delete</button>
- </form>
- </div>
- <?php include('modal.php'); ?>
- </div>
- </body>
- </html>
modal.php
This is the modal that contains our Add New form.- <!-- Add New -->
- <div class="modal fade" id="addnew" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
- <div class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header">
- </div>
- <div class="modal-body">
- <div class="container-fluid">
- <form method="POST" action="addnew.php">
- <div class="row">
- <div class="col-lg-2">
- </div>
- <div class="col-lg-10">
- <input type="text" class="form-control" name="firstname">
- </div>
- </div>
- <div class="row">
- <div class="col-lg-2">
- </div>
- <div class="col-lg-10">
- <input type="text" class="form-control" name="lastname">
- </div>
- </div>
- <div class="row">
- <div class="col-lg-2">
- </div>
- <div class="col-lg-10">
- <input type="text" class="form-control" name="address">
- </div>
- </div>
- </div>
- </div>
- <div class="modal-footer">
- </form>
- </div>
- </div>
- </div>
- </div>
addnew.php
Our code in adding new row to our MySQL Table.- <?php
- include('conn.php');
- $firstname=$_POST['firstname'];
- $lastname=$_POST['lastname'];
- $address=$_POST['address'];
- mysqli_query($conn,"insert into user (firstname, lastname, address) values ('$firstname', '$lastname', '$address')");
- ?>
delete.php
Lastly, our delete code. By pressing the delete button, this code will delete all checked rows.- <?php
- include('conn.php');
- foreach ($_POST['userid'] as $id):
- endforeach;
- }
- else{
- ?>
- <script>
- window.alert('Please check user to Delete');
- window.location.href='index.php';
- </script>
- <?php
- }
- ?>
Comments
Add new comment
- Add new comment
- 2094 views