Ah, it read my font tags! Use this:
<?php
//set your array, in this case, there are two - $quotes and $source
$quote[0] = "Do you know what the costliest phrase in technology is? It will work because it would be cool if it did.";
$source[0] = "Jean-Louis Gassé, Red Herring, December 1996";
$quote[1] = "The way to find what the mainstream will do tomorrow is to associate with
the lunatic fringe today.";
$source[1] = "Jean-Louis Gassé, InfoWorld, October 1995";
$quote[2] = "All I have is an opinion -- I don't deal in Truth.";
$source[2] = "Jean-Louis Gassé, Be Newsletter, Volume III, Issue 39";
//find the total number of quotes
$quotecount = count($quote);
//take 0 into account
$quotecount = ($quotecount -1);
//get a random number
$quotenum = rand(0, $quotecount);
echo "<center>";
echo "$quote[$quotenum]<br>\n";
echo "$source[$quotenum]<br>\n";
?>
-Adam