Salve a tutti
ho un piccolo problema con un contatore, in pratica si incrementa ogni volta che effettuo il refresh della pagina, è possibile eliminare questa cosa?
Di seguito il codice:
if (!$hitsfile) $hitsfile = dirname(__FILE__)."/hits";
if (!$images) $images = dirname(__FILE__)."/images";
$images = str_replace($DOCUMENT_ROOT, "", $images);
$hits = file($hitsfile);
$hits = $hits[0] + 1;
# Opening the hits file and writing the number of hits:
$fp = fopen($hitsfile, "w");
fwrite($fp, $hits);
if ($invisible != "yes") {
# Text counter
if ($counterstyle == "text") {
echo $hits;
}
# Image counter
else {
$digit = strval($hits);
for ($i = 0; $i < strlen($hits); $i++) {
echo "<img src=$images/$digit[$i].gif height=$height width=$width alt=$hits>";
}
}
}
?>
Grazie e buon lavoro a tutti
ho un piccolo problema con un contatore, in pratica si incrementa ogni volta che effettuo il refresh della pagina, è possibile eliminare questa cosa?
Di seguito il codice:
if (!$hitsfile) $hitsfile = dirname(__FILE__)."/hits";
if (!$images) $images = dirname(__FILE__)."/images";
$images = str_replace($DOCUMENT_ROOT, "", $images);
$hits = file($hitsfile);
$hits = $hits[0] + 1;
# Opening the hits file and writing the number of hits:
$fp = fopen($hitsfile, "w");
fwrite($fp, $hits);
if ($invisible != "yes") {
# Text counter
if ($counterstyle == "text") {
echo $hits;
}
# Image counter
else {
$digit = strval($hits);
for ($i = 0; $i < strlen($hits); $i++) {
echo "<img src=$images/$digit[$i].gif height=$height width=$width alt=$hits>";
}
}
}
?>
Grazie e buon lavoro a tutti