kgenus Seriously Devoted

Joined: 01 Dec 2004 Posts: 889 Location: Greater NYC Area
|
Posted: Wed Jun 22, 2005 11:44 am Post subject: Websites - Rotating Quotes / Pics, etc.... here's the code |
|
|
I don't know how long Deidre's been changing the banner text up there, but I thought I'd throw some PHP code up hear for those of you who want to add something similar to your personal sites for client quotes, etc... something that will change randomly each time the web page loads. I hope it helps at least one person.
See the code in action here
Cut and paste below, just remove the quotes I've got and add any extras you need.
_______
<?php
$quotes[] = 'I likes this stuff...';
$quotes[] = 'This is a test of the emergency broadcasting system...';
$quotes[] = 'Froggy went a courtin, he did right...';
$quotes[] = 'You can even put HTML CODE for random pics...';
$quotes[] = 'Add more of these quote lines';
# Add additional $quotes[] = ' '; lines for more quotes
srand ((double) microtime() * 1000000);
$random_number = rand(0,count($quotes)-1);
echo ($quotes[$random_number]);
?> _________________ Genus |
|