<?php
// randomly show a quote
$quotes=file("data/quotes");
list($quote,$author)=explode("--",$quotes[array_rand($quotes)]);
?>

<table width="50%" align="center">
<tr><td class="quote">
<?php echo $quote ?>

</td>
</tr>
<tr>
<td align="right" class="quote">
<?php echo "-- $author" ?>
</td>
</tr></table>
