For some reason today I know have this error alot on my site:
Warning: Division by zero in /home/habfancl/public_html/index.php on line 199
And my hit counter dont work :S
Line 199:
Hit counter code:PHP Code:$percentage=($uptime/$days) * 100;
PHP Code:<?php
$path = "images/";
$ext = ".gif";
$file = "counter.dat";
$file_array = file($file);
$hits = $file_array[0];
$hits++;
$fp = fopen($file, "w");
fputs($fp, $hits);
fclose($fp);
for ( $i = 0; $i <= 9; $i++ ) {
$hits = str_replace($i, "<img src=\"$path$i$ext\" alt=\"$i\" />", $hits);
}
echo $hits;
?>






Reply With Quote


