website view lib/random-image.php @ rev 1064

Fixed webconverger sponsor
author Naitsirhc Hsem meshca@clarkson.edu
date Mon Apr 16 10:14:18 2012 -0400 (2012-04-16)
parents 6bdb0d107255
children 388a05db640c
line source
1 <?php
3 $total = "8";
4 $folder = "/images/slideshow";
5 $start = "1";
6 $random = mt_rand($start, $total);
7 $name = $random . ".png";
9 echo "<img src=\"$folder/$name\" alt=\"SliTaz screenshot #$random\" />";
11 ?>