Random Quote Generator
November 12, 2008 · Posted in Code and Scripting, Tools

Free wordpress plugin in development that displays a random quote in the top right hand corner of the admin panel inside wordpress. More information will be posted later.
No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.



Here is a simple example of a random quote generator in PHP:
<php
$quotes = array(‘quote 1′, ‘quote 2′, ‘quote 3′);
$quote = $quotes[rand(0, count($quotes) - 1)];
echo $quote;
?>
Basically it just picks a random value from an array using the rand() function.
Actually I could probably use that now if I implement a php widget into the site.