i am logging your access of this page:
$myfile = fopen('cgi.log','a+') or die("this is so perl-like to die here.") ;
fputs($myfile, 'another visitor:
') ;
fputs($myfile, `date`) ;
fputs($myfile, $REMOTE_ADDR."\n") ;
fputs($myfile, $QUERY_STRING."\n") ;
fputs($myfile, "
") ;
?>
and now i will show you:
$results = file('cgi.log') ;
foreach ($results as $i) print "$i
"
?>