Please help me understand this and life in general:
Add line of code to page where you want quotes to appear
****** <?php include "random_quote.php"; ?> ********
<?php
$quotes [ ] = " This is a quote";
$quotes [ ] = " This is a quote 2";
$quotes [ ] = " quote 3";
$quotes [ ] = " quote 4";
$quotes [ ] = " quote 5";
$quotes [ ] = " quote 6";
$quotes [ ] = " quote 7";
$quotes [ ] = " quote 8";
srand ((double) microtime () * 1000000);
$randomquote = rand (0, count ($quotes)-1);
echo "<p>" . $quotes [$randomquote] . "</p>';
?>
Randy Patrick
"I am only one, but I am one. I cannot do everything, but I can do something. I will not let what I cannot do interfere with what I can do. " ~ Edward Everett Hale
"I am only one, but I am one. I cannot do everything, but I can do something. I will not let what I cannot do interfere with what I can do. " ~ Edward Everett Hale