Ecco il mio file randomimage.php
Codice PHP:
<?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 = "7";
// Change to the type of files to use eg. .jpg or .gif
$file_type = ".gif";
// Change to the location of the folder containing the images (qui ho messo sia l'indirizzo intero sia solo il nome della cartella)
$image_folder = "http://www.pietromalerba.it/emoticons";
// 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\" />";?>