website view libs/random-image.php @ rev 883

Add 2 images for the slide show
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 23 01:22:39 2012 +0100 (2012-02-23)
parents 09e244f811b0
children
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 ?>