<html><head><style type="text/css">body { background: grey; color: #0f0; } i { font-style: normal; color: #000; }</style></head>
<body>
<pre>
<?php

$maxx 
100;
$maxy 40;

$rnd = array(rand(0,2),rand(0,2),rand(0,2));
    
for(
$y=0$y<$maxy$y++) {
  for(
$x=0$x<$maxx$x++) {
#    if($x % 2 == 0): echo ' '; continue; endif;
    
$n = (((($x*($x*0.1)) + ($y*(2.5*(($y*2.5)*0.1)))))*(($maxx+$maxy)/400));
    
$num[0] = (int)($n*0.7);
    
$num[1] = (int)($n*0.8);
    
$num[2] = (int)$n;
    
$bg=255-((int)$n);
    
$sub rand(0,255);
    for(
$i=0$i<3$i++):
      
$num[$i] = $num[$i]<=$sub?0:(int)cap($num[$i]-$sub); endfor;

    echo 
"<span style=\"color:rgb({$num[$rnd[0]]},{$num[$rnd[1]]},{$num[$rnd[2]]}); background: rgb($bg,$bg,$bg);\">" htmlspecialchars(chr(rand(33,126))) . '</span>';
  }
  echo 
"\n";
}

function 
cap($input) {
  if(
$input 255) return 255;
  elseif(
$input < -255) return -255;
  else return 
$input;
}

?>
</pre></body></html>