<html><head><style type="text/css">body { background: black; color: #0f0; } i { font-style: normal; color: #000; }</style></head>
<body>
<pre>
<?php
for($y=0; $y<32; $y++) {
for($x=0; $x<80; $x++) {
$num = (int)(($x + ($y*2.5)) * 1.6);
echo "<span style=\"color:rgb($num,$num,$num)\">" . htmlspecialchars(chr(rand(33,126))) . '</span>';
}
echo "\n";
}
?>
</pre></body></html>