I want to make download counter in my site with this script :
<?php
$counter = 'apk/counter.txt'; // text file to store download count - create manually and put a 0 (zero) in it to begin the count
$download = 'http://site.my/apk/file.apk'; // the link to your download file
$number = file_get_contents($counter); // read count file
$number++; // increment count by 1
$fh = fopen($counter, 'w'); // open count file for writing
fwrite($fh, $number); // write new count to count file
fclose($fh); // close count file
header('Location: $download'); // get download
?>
But the result say
Warning: Cannot modify header information - headers already sent by (output started at /home/user/public_html/download.php:1) in /home/user/public_html/download.php on line 9
How to fix it?