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

Move libs to lib and starz new website all in PHP for 4.0
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 08 02:41:51 2012 +0100 (2012-03-08)
parents libs/random-image.php@3b9816842566
children e06721d4f040
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=\"$name\" />";
11 ?>