PHP - Change File Name In SQLite3

In this tutorial we will create a Change File Name In SQLite3 using PHP. This code will launch a modal to change the filename when the user click the edit button. The code use MySQLi UPDATE query to update the old filename in the database base on the given file id, and to change the file itself use rename() a php built-in function that rename the existing file in the directory by providing the old filename and new filename. This a user-friendly program feel free to modify and use it to your system. We will be using SQLite that provides an interface for accessing the database. It includes class interfaces to the SQL commands. And also it allows you to create SQL functions and aggregate using PHP.

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/. Installing SQLite Browser We will now then install the SQLite data viewer, here's the link for the DB Browser for SQLite http://sqlitebrowser.org/.

Setting Up SQLite

First, we are going to enable SQLite 3 in our PHP.
  1. Open localhost server folder XAMPP, etc and locate php.ini.
  2. Open php.ini and enable sqlite3 by removing the semicolon in the line. tut1
  3. Save changes and Restart Server.

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=new SQLite3('db/db_image') or die("Unable to open database!");
  3.         $query="CREATE TABLE IF NOT EXISTS `image`(image_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, image_name TEXT, location TEXT)";
  4.        
  5.         $conn->exec($query);
  6. ?>

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 - Change File Name In SQLite3</h3>
  16.                 <hr style="border-top:1px dotted #000;"/>
  17.                 <div class="col-md-4">
  18.                         <form method="POST" action="upload.php" enctype="multipart/form-data">
  19.                                 <div class="form-group">       
  20.                                         <input name="image" type="file" required="required"/>
  21.                                 </div> 
  22.                                 <center><button class="btn btn-primary" name="upload"><span class="glyphicon glyphicon-upload"></span> Upload</button></center>
  23.                         </form>
  24.                 </div>
  25.                 <div class="col-md-8">
  26.                         <table class="table table-bordered">
  27.                                 <thead class="alert-info">
  28.                                         <tr>
  29.                                                 <th>File Name</th>
  30.                                                 <th>File Location</th>
  31.                                                 <th>Action</th>
  32.                                         </tr>
  33.                                 <thead>
  34.                                 <tbody>
  35.                                         <?php
  36.                                                 require'conn.php';
  37.                                                
  38.                                                 $query=$conn->query("SELECT * FROM `image`") or die("Failed to fetch row!");
  39.                                                 while($fetch=$query->fetchArray()){
  40.                                         ?>
  41.                                                 <tr>
  42.                                                         <td><?php echo $fetch['image_name']?></td>
  43.                                                         <td><?php echo $fetch['location']?></td>
  44.                                                         <td><button type="button" class="btn btn-warning" data-toggle="modal" data-target="#edit<?php echo $fetch['image_id']?>"><span class="glyphicon glyphicon-edit"></span> Edit</button></td>
  45.                                                 </tr>
  46.                                                
  47.                                                
  48.                                                 <div class="modal fade" id="edit<?php echo $fetch['image_id']?>" aria-hidden="true">
  49.                                                         <div class="modal-dialog">
  50.                                                                 <div class="modal-content">
  51.                                                                         <form method="POST" enctype="multipart/form-data" action="change.php">
  52.                                                                                 <div class="modal-header">
  53.                                                                                         <h3 class="modal-title">Update File</h3>
  54.                                                                                 </div>
  55.                                                                                 <div class="modal-body">
  56.                                                                                         <div class="col-md-2"></div>
  57.                                                                                         <div class="col-md-8">
  58.                                                                                                 <input type="hidden" value="<?php echo $fetch['image_id']?>" name="image_id"/>
  59.                                                                                                 <input type="hidden" name="location" value="<?php echo $fetch['location']?>"/>
  60.                                                                                                 <div class="form-group">       
  61.                                                                                                         <label>Filename</label>
  62.                                                                                                         <input name="filename" class="form-control" type="text" value="<?php echo $fetch['image_name']?>" required="required"/>
  63.                                                                                                 </div> 
  64.                                                                                         </div>
  65.                                                                                 </div>
  66.                                                                                 <br style="clear:both;"/>
  67.                                                                                 <div class="modal-footer">
  68.                                                                                         <button class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  69.                                                                                         <button class="btn btn-warning" name="edit"><span class="glyphicon glyphicon-save"></span> Update</button>
  70.                                                                                 </div>
  71.                                                                         </form>
  72.                                                                 </div>
  73.                                                         </div>
  74.                                                 </div> 
  75.                                         <?php
  76.                                                 }
  77.                                                
  78.                                         ?>
  79.                                 </tbody>
  80.                         </table>
  81.                 </div>
  82.         </div> 
  83. <script src="js/jquery-3.2.1.min.js"></script> 
  84. <script src="js/bootstrap.js"></script>
  85. </body>
  86. </html>

Creating the Upload Function

This code contains the upload function of the application. This code will upload the image data to SQLite database. To do this just copy and write these block of codes as shown below inside the text editor, then save it as upload.php.
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['upload'])){
  5.                 $file_name = $_FILES['image']['name'];
  6.                 $file_temp = $_FILES['image']['tmp_name'];
  7.                
  8.                 $exp = explode(".", $file_name);
  9.                 $ext = end($exp);
  10.                 $image = time();
  11.                 $ext_allowed = array("png", "gif", "jpeg", "jpg");
  12.                 $location = "uploads/".$image.'.'.$ext;
  13.                 if(in_array($ext, $ext_allowed)){
  14.                         if(move_uploaded_file($file_temp, $location)){
  15.                                 $query="INSERT INTO `image` (image_name, location) VALUES('$image', '$location')";
  16.                        
  17.                                 $conn->exec($query);
  18.                        
  19.                                 echo "<script>alert('Image uploaded!')</script>";
  20.                                 echo "<script>window.location='index.php'</script>";
  21.                         }
  22.                 }else{
  23.                         echo "<script>alert('Only image to upload!')</script>";
  24.                         echo "<script>window.location='index.php'</script>";
  25.                 }
  26.         }
  27. ?>

Creating the Main Function

This code contains the main function of the application. This code will update the old filename with a new one when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor, then save it as change.php.
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['edit'])){
  5.                 $name=$_POST['filename'];
  6.                 $location=$_POST['location'];
  7.                 $image_id=$_POST['image_id'];
  8.                 $exp=explode("/", $location);
  9.                 $ext=explode(".", $exp[1]);
  10.        
  11.                
  12.                 if(file_exists($location)){
  13.                         if(rename($exp[0]."/".$exp[1], $exp[0]."/".$name.".".$ext[1])){
  14.                                 $filename=$name;
  15.                                 $path=$exp[0]."/".$name.".".$ext[1];
  16.                                 $query="UPDATE `image` SET `image_name`='$filename', `location`='$path' WHERE `image_id`='$image_id'";
  17.                                 $conn->exec($query);
  18.                                 echo"<script>alert('Successfully change filename!')</script>";
  19.                                 echo"<script>window.location='index.php'</script>";
  20.                         }
  21.                 }else{
  22.                         echo"<script>alert('File Not Exist!')</script>";
  23.                         echo"<script>window.location='index.php'</script>";
  24.                 }
  25.         }
  26.        
  27.        
  28. ?>
There you have it we successfully created Change File Name In SQLite3 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