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.

Comments

2 Responses to “Random Quote Generator”

  1. fijiwebdesign on February 3rd, 2009 12:41 am

    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.

  2. Byron Thurman on February 19th, 2009 11:36 pm

    Actually I could probably use that now if I implement a php widget into the site.

Leave a Reply

You must be logged in to post a comment.



Powered by RocketScience
Hosting provided by Hostmilitia