quotes.php

Source of quotes.php

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>quotes</title>
</head>
<body>
<h1>Random Computer Quotes</h1>
<p>"
<?php

$theArray = array();

$theArray[] = "If at first you don't succeed; call it version 1.0 and ship it anyways...";
$theArray[] = "Some things Man was never meant to know. For everything else, there's Google.";
$theArray[] = "SUPERCOMPUTER: what it sounded like before you bought it.";
$theArray[] = "My software never has bugs. It just develops random features.";
$theArray[] = "If you give someone a program, you will frustrate them for a day; if you teach them how to program, you will frustrate them for a lifetime.";
$theArray[] = "It is easier to change the specification to fit the program than vice versa.";
$theArray[] = "Programmers are tools for converting caffeine into code.";
$theArray[] = "Always program as if the person who will be maintaining your program is a violent psychopath that knows where you live.";

print $theArray[rand(0,7)];

?>
"</p>

<p><a href="quotes.php">See Another!</a></p>

</body>
</html>