The easiest way I can think of would be to get a random number based on
the size of an array.  If you're querying your database and filling an
array with all images, just use the database's random routine instead.
(I.E. "SELECT quote,author from randomQuote ORDER by RAND() LIMIT 1" in
mysql)

If this isn't the case, something like this should work..

  srand(time());
  $random=rand(0,sizeof($myVar)-1);

Hope I could be of some help...

--Justin King, School District of Superior Web Coordinator
(www.superior.k12.wi.us)


-----Original Message-----
From: Joseph Bannon [mailto:[EMAIL PROTECTED]] 
Sent: Friday, September 07, 2001 2:08 PM
To: PHP (E-mail)
Subject: [PHP] randomly picking a variable from an array

How do you randomly picking a variable from an array with PHP?

Thanks,

Joseph




PS. Thanks to those who helped me with GD. If you go to my site, you'll
see
the new counter I created at the top of the page.

http://www.collegesucks.com

















-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to