PHP - Simple Image Randomizer

In this tutorial we will create a Simple Image Randomizer using PHP. This code can display a random data in the page through MySQLi server. The code use MySQLi Select query to display a random image by adding a 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, 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");
  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 - Simple Image Randomizer</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <form method="POST" action="upload.php" enctype="multipart/form-data">
  18. <div class="form-inline">
  19. <label>Image:</label>
  20. <input type="file" name="image" class="form-control" required="required"/>
  21. <button class="btn btn-primary" name="upload"><span class="glyphicon glyphicon-save"></span> Upload</button>
  22. </div>
  23. </form>
  24. <br /><br />
  25. <?php include 'random.php'?>
  26. </div>
  27. </body>
  28. </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 data when the program start running. To make this just copy and write these block of codes below inside the text editor, then save it as random.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="250" width="250"/>
  8. <?php
  9. }
  10. ?>
  11. </div>
There you have it we successfully created Simple Image Randomizer 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