<?php
// Change this to the total number of images in the folder

$total = "3";



// Change to the type of files to use eg. .jpg or .gif

$file_type = ".png";



// Change to the location of the folder containing the images

$image_folder = "ltjail.us.lt/public_html/themes/Skilas.LTv7/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' />";

?>