Random Image PHP Code
Posted by Heather, under ProgrammingThis will display a random image on a web page. Images are selected from the folder of your choice.
Create a php page with the following (making necessary changes) and upload to your server :
<?php
// Change to the total number of images in the folder
$total = “11″;
// Type of files to use eg. .jpg or .gif
$file_type = “.jpg”;
// Change to the location of the folder with your images
$image_folder = “images/random”;
// You do not need to edit below this line
$start = “1″;
$random = mt_rand($start, $total);
$image_name = $random . $file_type;
echo “<img src=\”$image_folder/$image_name\” alt=\”$image_name\” />”;
?>
Name your images 1.jpg, 2.jpg etc.
Add this line to your page where you want the images to appear:
<?php include “randomimage.php”; ?>
