PHP - Remove Multiple Row using MySQLi
Submitted by razormist on Thursday, January 17, 2019 - 21:09.
In this tutorial we will create Remove Multiple Row using MySQLi using PHP. 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 now do the coding...
There you have it we successfully created using PHP. 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!!!
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 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_row, after that click Import then locate the database file inside the folder of the application then click ok.
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.- <?php
- if(!$conn){
- }
- ?>
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.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- <a class="navbar navbar-brand">Sourcecodester</a>
- </div>
- </nav>
- <div class="col-md-3"></div>
- <div class="col-md-6 well">
- <h3 class="text-primary">PHP - Remove Multiple Row using MySQLi</h3>
- <hr style="border-top:1px dotted #ccc;"/>
- <form method="POST" action="save.php">
- <div class="form-inline">
- <label>Firstname</label>
- <input type="text" name="firstname" class="form-control"/>
- </div>
- <br />
- <div class="form-inline">
- <label>Lastname</label>
- <input type="text" name="lastname" class="form-control"/>
- </div>
- <br />
- <div class="form-inline">
- <label>Gender</label>
- <input type="text" name="gender" class="form-control"/>
- </div>
- <br />
- <div class="form-inline">
- <label>Address</label>
- <input type="text" name="Address" class="form-control"/>
- </div>
- <br />
- <button class="btn btn-primary" name="save"><span class="glyphicon glyphicon-save"></span> Add</button>
- </form>
- <br />
- <table class="table table-bordered">
- <form method="POST" action="remove.php">
- <thead class="alert-info">
- <tr>
- <th>#</th>
- <th>Firstname</th>
- <th>Lastname</th>
- <th>Gender</th>
- <th>Address</th>
- </tr>
- </thead>
- <tbody>
- <?php
- require 'conn.php';
- $query = mysqli_query($conn, "SELECT * FROM `member` ORDER BY `lastname` ASC") or die(mysqli_error());
- ?>
- <tr>
- <td><input type="checkbox" name="mem_id[]" value="<?php echo $fetch['mem_id']?>"></td>
- <td><?php echo $fetch['firstname']?></td>
- <td><?php echo $fetch['lastname']?></td>
- <td><?php echo $fetch['gender']?></td>
- <td><?php echo $fetch['address']?></td>
- </tr>
- <?php
- }
- ?>
- </tbody>
- <tfooter>
- <tr>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- <td><button class="btn btn-danger" name="remove">Remove</button></td>
- </tr>
- </tfooter>
- </form>
- </table>
- </div>
- </body>
- </html>
Creating PHP Query
This code contains the php query of the application. This code will store the data inputs to the database server. To do that just copy and write this block of codes inside the text editor, then save it as save.php.- <?php
- require_once 'conn.php';
- $firstname = $_POST['firstname'];
- $lastname = $_POST['lastname'];
- $gender = $_POST['gender'];
- $address = $_POST['address'];
- mysqli_query($conn, "INSERT INTO `member` VALUES('', '$firstname', '$lastname', '$gender', '$address')") or die(mysqli_error());
- }
- ?>
Creating the Main Function
This code contains the main function of the application. This code will remove a multiple row of data in an instance. To make this just follow and write the below inside the text editor, then save it as remove.php.- <?php
- require_once 'conn.php';
- foreach($_POST['mem_id'] as $key => $value){
- }
- }else{
- echo "<script>alert('Please select something first!')</script>";
- echo "<script>window.location= 'index.php'</script>";
- }
- }
- ?>
Add new comment
- 86 views