this is in fact pretty easy.
this should get you started

[code]
$files = split("\n",`ls *gif`);
srand((double)microtime()*1000000);
$num = rand(0, count($files));
echo "$num = $files[$num]";
[/code]



John Taylor-Johnston wrote:


I have a directory jammed-packed with images.
I want to read the directory contents /www/usr/htm/images/
and display randomly any *.gif or *.jpg in said directory.
Do-able? Seriously? Ideas? Places to start?
John






--
http://www.raditha.com/php/progress.php
A progress bar for PHP file uploads.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to