Display A String By A Date Value With PHP
Printing off a random quote on a page is useful (or at least interesting), but it is nice to rotate them slower than every page view.
A better solution is to use a time based value to work out which quote to display. In this way the quote is changed every hour/day/week or whatever time period you have selected.
Create a file called quote.txt in the same directory as the script and put a single quote on each line.
quote 1
quote 2
quote 3
The following function will take a time part as a single parameter and return a quote.