Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

php Random image

Sun Oct 26, 2008 6:11 pm

Displays a random image on a web page. Images are selected from a folder of your choice.

Code:

<?php



/*

 * 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"; ?>

 */ 



// Change this to the total number of images in the folder

$total "11";



// Change to the type of files to use eg. .jpg or .gif

$file_type ".jpg";



// Change to the location of the folder containing the 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\" />";



?>




Post a reply
  Related Posts  to : php Random image
 php Random quote     -  
 Random to File     -  
 Random To File     -  
 Generating Random Number in java     -  
 random forest algorithm classifier     -  
 Pick one or more random entries out of an array     -  
 Image-Viewer-Image Processing-Filters-Noise-enhancements     -  
 Applet Game To Shot a Random Ball     -  
 Random Search for tuning classifier parameters     -  
 Get the important variables of random forest classifier     -  

Topic Tags

PHP Graphics