So here comes the script:
CODE
<?php
//Simple class for counting visits
//Written by WebSaint
class Teller {
function count() {
$countfile = file("alle.txt");
$count = $countfile[0];
$count= $count + 1;
$fp = fopen("alle.txt","w");
$fw = fwrite($fp,$count);
fclose($fp);
echo $count;
}
}
$obj =& new Teller;
$obj->count();
?>
//Simple class for counting visits
//Written by WebSaint
class Teller {
function count() {
$countfile = file("alle.txt");
$count = $countfile[0];
$count= $count + 1;
$fp = fopen("alle.txt","w");
$fw = fwrite($fp,$count);
fclose($fp);
echo $count;
}
}
$obj =& new Teller;
$obj->count();
?>
Then add this to display the number of visitors:
CODE
<p>Number of guests visiting my site: <? include('alle.txt'); ?>.</p>
That's it. I hope you'll find the script useful!


