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

Main page and config --> 4.0
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 10 17:43:06 2012 +0200 (2012-04-10)
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 ?>