PHP - Random Image Display In MySQLi

In this tutorial we will create a Random Image Display In MySQLi using PHP. This code can display a random image in the page when user launch the application The code use MySQLi Select query in order to display a random image you need to add RAND() parameter in the ORDER BY statement. This a user-friendly program feel free to modify and use it to your system. We will be using PHP as a scripting language and interpreter that is used primarily on any webserver including xamp, wamp, etc. It is being use to any famous websites because of modern approach as its today.

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_random_image, 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_random_image");
  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">Sourceodester</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 - Random Image Display In MySQLi</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <div class="col-md-4">
  18.                         <form method="POST" action="upload.php" enctype="multipart/form-data">
  19.                                 <div class="form-group">
  20.                                         <label>Image:</label>
  21.                                         <input type="file" name="image" class="form-control" required="required"/>
  22.                                 </div>
  23.                         <center><button class="btn btn-primary" name="upload"><span class="glyphicon glyphicon-save"></span> Upload</button></center>  
  24.                         </form>
  25.                 </div>
  26.                 <div class="col-md-8">
  27.                         <?php include 'image_display.php'?>
  28.                 </div>
  29.         </div>
  30. </body>
  31. </html>

Creating PHP Query

This code contains the php query of the application. This code will upload the image file to the database server. To do that just copy and write this block of codes inside the text editor, then save it as upload.php.
  1. <?php
  2.         require_once 'conn.php';
  3.         if(ISSET($_POST['upload'])){
  4.                 $image_name = $_FILES['image']['name'];
  5.                 $image_temp = $_FILES['image']['tmp_name'];
  6.                 $exp = explode(".", $image_name);
  7.                 $end = end($exp);
  8.                 $name = time().".".$end;
  9.                 $path = "upload/".$name;
  10.                 $allowed_ext = array("gif", "jpg", "jpeg", "png");
  11.                 if(in_array($end, $allowed_ext)){
  12.                         if(move_uploaded_file($image_temp, $path)){
  13.                                 mysqli_query($conn, "INSERT INTO `image` VALUE('', '$name', '$path')") or die(mysqli_error()); 
  14.                                 echo "<script>alert('Image saved!')</script>";
  15.                                 header("location: index.php");
  16.                         }
  17.                 }else{
  18.                         echo "<script>alert('Image only')</script>";
  19.                 }
  20.         }
  21. ?>

Creating the Main Function

This code contains the main function of the application. This code will display a random image when user launch the application. To make this just copy and write these block of codes below inside the text editor, then save it as image_display.php
  1. <div class="col-md-12">
  2.         <?php
  3.                 require 'conn.php';
  4.                 $query = mysqli_query($conn, "SELECT * FROM `image` ORDER BY RAND() LIMIT 4") or die(mysqli_error());
  5.                 while($fetch = mysqli_fetch_array($query)){
  6.         ?>
  7.                 <img src="<?php echo $fetch['location']?>" style="margin:10px; float:left;" height="150" width="150"/>
  8.         <?php
  9.                 }
  10.         ?>
  11. </div>
There you have it we successfully created Random Image Display In MySQLi 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!

Comments

I really enjoy this script PHP - Random Image Display In MySQL that you created. However, sometimes it doesn't display an image, and when I look at my website's source code, it is trying to display an image that doesn't exist in the database or anywhere on my site for that matter. Any idea or suggestion to what I can do to fix this issue, I would greatly appreciate. Fred Michigan

Add new comment