Registriert seit: 19. Mär 2003
Ort: Wuppertal
835 Beiträge
Delphi 3 Standard
|
Re: PHP - FileDownload Counter implementieren ohne DB
26. Jun 2005, 16:10
Hallo sniper_w,
so dürfte es dann sein ...
Code:
<?php
$file= fopen("counter.txt", "r+") or die ("die Datei laesst sich nicht oeffnen!");
fscanf($file, "%d", $count);
$count++;
rewind($file);
fputs($file, $count);
fclose($file);
?>
bye
Claus
Künftige Generationen wollen ihre Fehler selber machen.
Jedes Programm wird nie das können, was Du wirklich brauchst.
Das Gegenteil von gut ist gut gemeint
-----
|