Mal ein kleines Beispiel für einen Counter (allerdings nicht ausprobiert...):
Code:
<?php
$filename = "counter.tct";
list($counter) = @file($filename);
$counter++;
f = "fopen($filename, "w")";
if ($f) {
fwrite($f, $counter);
fclose($f);
}
?>
Das ist allerdings für einen downloadcounter nciht all zu optimal, weil so brauchst du für jeden Download-Link eine neue Text-Datei.
Das kann man allerdings recht gut weiterbearbeiten....