I'm trying to add an counter to my site and it does not work, here is the script i'm using,
<?php
$viewss = file("counterlog.txt");
$views = $viewss[0]; $views++;
$fp = fopen("counterlog.txt", "w");
fwrite($fp, $views);
fclose($fp);
print Visitors:$views;
?>