Re: Random Images with no duplicates?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Silvio Porcellana [tradeOver] wrote:
> 
> <code>
> 	$file = "images.txt";
> 	$openFile = file($file);
> 	$num_images = 10;
> 	# don't need this is PHP > 4.2.0
> 	srand((float) microtime() * 10000000);
> 	$random_keys = array_rand($openFile, $num_images);
> 	foreach ($random_keys as $random_key) {
> 		echo "<img src='$random_image' height='170'  width='100'></img>";

ops, sorry, that obviously should be:
	echo "<img src='" . $openFile[$random_key] . "' height='170'
width='100'></img>";

> 	}
> </code>

Sorry about this!

Silvio

-- 
tradeOver | http://www.tradeover.net
...ready to become the King of the World?

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux