PHP - Simple Transfer Data To Other Table

In this tutorial we will create a Simple Transfer Data To Other Table using MySQLi. This code will move the data to other table when the user click the move button. The code use MySQLi SELECT to fetch the data that will be transfer to other table and it will be deleted after transfer by using DELETE query. This a user-friendly program feel free to modify and use it to your system. We will be using PHP as a scripting language that interepret in the webserver such as xamp, wamp, etc. It is widely use by modern website application to handle and protect user confidential information.

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/. Lastly, this is the link for the jquery that i usedhttps://jquery.com/.

Creating Database

Open your database web server then create a database name in it db_transfer, 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_transfer");
  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 - Simple Transfer Data To Other Table</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <button class="btn btn-primary" type="button" data-toggle="modal" data-target="#form_modal">Add member</button>
  18.                 <br /><br />
  19.                 <div class="col-md-6">
  20.                         <table class="table table-bordered">
  21.                                 <thead class="alert-info">
  22.                                         <tr>
  23.                                                 <th>Firstname</th>
  24.                                                 <th>Lastname</th>
  25.                                                 <th>Address</th>
  26.                                                 <th></th>
  27.                                         </tr>
  28.                                 </thead>
  29.                                 <tbody>
  30.                                         <?php
  31.                                                 require'conn.php';
  32.                                                 $query=mysqli_query($conn, "SELECT * FROM `member1`") or die(mysqli_error());
  33.                                                 while($fetch=mysqli_fetch_array($query)){
  34.                                         ?>
  35.                                         <tr>
  36.                                                 <td><?php echo $fetch['firstname']?></td>
  37.                                                 <td><?php echo $fetch['lastname']?></td>
  38.                                                 <td><?php echo $fetch['address']?></td>
  39.                                                 <td><a href="transfer.php?mem_id=<?php echo $fetch['mem_id']?>" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-right"></span></a></td>
  40.                                         </tr>
  41.                                         <?php
  42.                                                 }
  43.                                         ?>
  44.                                 </tbody>
  45.                         </table>
  46.                 </div>
  47.                 <div class="col-md-1"></div>
  48.                 <div class="col-md-5">
  49.                         <table class="table table-bordered">
  50.                                 <thead class="alert-info">
  51.                                         <tr>
  52.                                                 <th>Firstname</th>
  53.                                                 <th>Lastname</th>
  54.                                                 <th>Address</th>
  55.                                         </tr>
  56.                                 </thead>
  57.                                 <tbody>
  58.                                         <?php
  59.                                                 require'conn.php';
  60.                                                 $query=mysqli_query($conn, "SELECT * FROM `member2`") or die(mysqli_error());
  61.                                                 while($fetch=mysqli_fetch_array($query)){
  62.                                         ?>
  63.                                         <tr>
  64.                                                 <td><?php echo $fetch['firstname']?></td>
  65.                                                 <td><?php echo $fetch['lastname']?></td>
  66.                                                 <td><?php echo $fetch['address']?></td>
  67.                                         </tr>
  68.                                         <?php
  69.                                                 }
  70.                                         ?>
  71.                                 </tbody>
  72.                         </table>
  73.                 </div>
  74.         </div>
  75. <div class="modal fade" aria-hidden="true" id="form_modal">
  76.         <div class="modal-dialog">
  77.                 <div class="modal-content">
  78.                         <form method="POST" action="save.php">
  79.                                 <div class="modal-header">
  80.                                         <h3 class="modal-title">Add Member</h3>
  81.                                 </div>
  82.                                 <div class="modal-body">
  83.                                         <div class="col-md-2"></div>
  84.                                         <div class="col-md-8">
  85.                                                 <div class="form-group">
  86.                                                         <label>Firstname</label>
  87.                                                         <input type="text" name="firstname" class="form-control" required="required"/>
  88.                                                 </div>
  89.                                                 <div class="form-group">
  90.                                                         <label>Lastname</label>
  91.                                                         <input type="text" name="lastname" class="form-control" required="required"/>
  92.                                                 </div>
  93.                                                 <div class="form-group">
  94.                                                         <label>Address</label>
  95.                                                         <input type="text" name="address" class="form-control" required="required"/>
  96.                                                 </div>
  97.                                         </div>
  98.                                 </div>
  99.                                 <br style="clear:both;"/>
  100.                                 <div class="modal-footer">
  101.                                         <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  102.                                         <button class="btn btn-primary" name="save"><span class="glyphicon glyphicon-save"></span> Save</button>
  103.                                 </div>
  104.                         </form>
  105.                 </div>
  106.         </div>
  107. </div> 
  108. <script src="js/jquery-3.2.1.min.js"></script> 
  109. <script src="js/bootstrap.js"></script>
  110. </body>
  111. </html>

Creating the PHP Query

This code contains the php query of the application. This code will store the user data inputs to the database server. To make this just copy and write these block of codes below inside the text editor, then save it as save.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 `member1` VALUES('', '$firstname', '$lastname', '$address')") or die(mysqli_error());
  10.                
  11.                 header("location: index.php");
  12.         }
  13. ?>

Creating the Main Function

This code contains the main function of the application. This code will move the data in the table 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 transfer.php
  1. <?php
  2.         require_once'conn.php';
  3.        
  4.         if(ISSET($_REQUEST['mem_id'])){
  5.                 $mem_id=$_REQUEST['mem_id'];
  6.                
  7.                 $query=mysqli_query($conn, "SELECT * FROM `member1` WHERE `mem_id`='$mem_id'") or die(mysqli_error());
  8.                 $fetch=mysqli_fetch_array($query);
  9.                 $firstname=$fetch['firstname'];
  10.                 $lastname=$fetch['lastname'];
  11.                 $address=$fetch['address'];
  12.                
  13.                
  14.                 mysqli_query($conn, "INSERT INTO `member2` VALUES('', '$firstname', '$lastname', '$address')") or die(mysqli_error());
  15.                 mysqli_query($conn, "DELETE FROM `member1` WHERE `mem_id`='$mem_id'") or die(mysqli_error());
  16.                
  17.                 echo"<script>alert('Data successfully transfer')</script>";
  18.                 echo"<script>window.location='index.php'</script>";
  19.         }
  20. ?>
There you have it we successfully created Simple Transfer Data To Other Table 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