<html>
<head><title>KEKKONEN ON YKKÖNEN</title></head>
<body bgcolor=black>

<pre>
<font color=white>

<?
$cpath="/home/acrolyte/public_html/kekkonen/counter.txt";
if (file_exists($cpath)) {
        $handle=fopen($cpath,"r");
        $count=fread($handle,filesize($cpath));
        settype($count,"integer");
        fclose($handle);
}
$count++;
$handle=fopen($cpath,"w+");
fwrite($handle, $count);
fclose($handle);

include("kekkonen.txt");
?>
</font>
</pre>
</body>
</html>
