PHP - Update Multiple Table Row

In this tutorial we will create a Update Multiple Table Row 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 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_row, 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_row') or die(mysqli_error());
  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 - Update Multiple Table Row</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <button type="button" class="btn btn-primary" 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="update_row.php">
  21.                                 <thead class="alert-info">
  22.                                         <tr>
  23.                                                 <th>Firstname</th>
  24.                                                 <th>Lastname</th>
  25.                                                 <th>Address</th>
  26.                                         </tr>
  27.                                 </thead>
  28.                                 <tbody style="background-color:#fff;">
  29.                                         <?php
  30.                                                 require 'conn.php';
  31.                                                
  32.                                                 $query = mysqli_query($conn, "SELECT * FROM `member` ORDER BY `lastname` ASC") or die(mysqli_error());
  33.                                                 while($fetch = mysqli_fetch_array($query)){
  34.                                         ?>
  35.                                         <tr>
  36.                                                 <td><input type="hidden" value="<?php echo $fetch['mem_id']?>" name="mem_id[]"><input type="text" value="<?php echo $fetch['firstname']?>" name="firstname[]"/></td>
  37.                                                 <td><input type="text" value="<?php echo $fetch['lastname']?>" name="lastname[]"/></td>
  38.                                                 <td><input type="text" value="<?php echo $fetch['address']?>" name="address[]"/></td>
  39.                                         </tr>
  40.                                         <?php
  41.                                                 }
  42.                                         ?>
  43.                                 </tbody>
  44.                                 <tfoot>
  45.                                         <tr>
  46.                                                 <td colspan="3"><center><button class="btn btn-warning">Update</button></center></td>
  47.                                         </tr>
  48.                                 </tbody>
  49.                         </form>
  50.                 </table>
  51.         </div>
  52.         <div class="modal fade" id="form_modal" tabindex="-1" role="dialog" aria-hidden="true">
  53.                 <div class="modal-dialog" role="document">
  54.                         <form action="save_member.php" method="POST" enctype="multipart/form-data">
  55.                                 <div class="modal-content">
  56.                                         <div class="modal-body">
  57.                                                 <div class="col-md-2"></div>
  58.                                                 <div class="col-md-8">
  59.                                                         <div class="form-group">
  60.                                                                 <label>Firstname</label>
  61.                                                                 <input type="text" name="firstname" class="form-control" required="required"/>
  62.                                                         </div>
  63.                                                         <div class="form-group">
  64.                                                                 <label>Lastname</label>
  65.                                                                 <input type="text" name="lastname" class="form-control" required="required"/>
  66.                                                         </div>
  67.                                                         <div class="form-group">
  68.                                                                 <label>Address</label>
  69.                                                                 <input type="text" name="address" class="form-control" required="required"/>
  70.                                                         </div>
  71.                                                 </div>
  72.                                         </div>
  73.                                         <div style="clear:both;"></div>
  74.                                         <div class="modal-footer">
  75.                                                 <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  76.                                                 <button name="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Save</button>
  77.                                         </div>
  78.                                 </div>
  79.                         </form>
  80.                 </div>
  81.         </div>
  82.        
  83.        
  84. <script src="js/jquery-3.2.1.min.js"></script>
  85. <script src="js/bootstrap.js"></script>
  86. </body>
  87. </html>

Creating the Save Query

This code contains the saving 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_member.php.
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         $firstname = $_POST['firstname'];
  5.         $lastname = $_POST['lastname'];
  6.         $address = $_POST['address'];
  7.        
  8.         mysqli_query($conn, "INSERT INTO `member` VALUE('', '$firstname', '$lastname', '$address')") or die(mysqli_error());
  9.        
  10.         header("location: index.php");
  11. ?>

Creating the Update Row

This code contains the update query of the application. This code will update all the date in the row when the button update is clicked. To do that just copy and write this block of codes inside the text editor, then save it as update_row.php.
  1. <?php
  2.         require_once 'conn.php';
  3.  
  4.         $data = [];
  5.        
  6.         for($i=0; $i < count($_POST['mem_id']); $i++){
  7.                 $data[$_POST['mem_id'][$i]]['firstname'] = $_POST['firstname'][$i];
  8.                 $data[$_POST['mem_id'][$i]]['lastname'] = $_POST['lastname'][$i];
  9.                 $data[$_POST['mem_id'][$i]]['address'] = $_POST['address'][$i];
  10.         }
  11.        
  12.        
  13.         foreach($data as $key => $value){
  14.                 mysqli_query($conn, "UPDATE `member` SET `firstname` = '$value[firstname]', `lastname` = '$value[lastname]', `address` = '$value[address]' WHERE `mem_id` = '$key'");
  15.         }
  16.        
  17.         header('location: index.php');
  18. ?>
There you have it we successfully created Update Multiple Table Row 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!

Add new comment