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

get-feeds: rel='nofollow' to scn and forum activity
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jun 29 11:17:30 2012 +0000 (2012-06-29)
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 ?>