I\'ld like to count file downloads with PHP. The downloads number should be stored in a .TXT file.
How that can be done? Thanks Uli
$current_count = file_get_contents('count'); $f = fopen('count', 'w+'); fwrite($f, $current_count + 1); fclose($f); header("Location: file.zip");