This is very simple and useful php script if you want to display some random quotes each time a page is visited or refreshed.
$quote = array(
1 => "Random Quote 1",
2 => "This is sample quote 2",
3 => "check http://programming-in-php.blogspot.com",
4 => "it really works",
5 => "wooooooooooooooooooooow",
6 => "I am on twitter"
);
$randnum = rand(1,6);
echo "Random Quote - $quote[$randnum]";
?>
This is a very basic version of the script.
Soon you can see the modified version of this script with database support to show random quotes from the database. Tweet this!