I want send my zip files in my page from inside php.
With this I know how many people have download my file and other information.
My problem is this, I have this code but it dosn't resume broken downloads.
What I can do for this?
-------------------
<?php
header('Content-type: application/zip');
$fp = fopen('file.zip ', 'rb');
while (!feof($fp))
echo fread($fp, 1024);
fclose($fp);
?>
---------------------
With this I know how many people have download my file and other information.
My problem is this, I have this code but it dosn't resume broken downloads.
What I can do for this?
-------------------
<?php
header('Content-type: application/zip');
$fp = fopen('file.zip ', 'rb');
while (!feof($fp))
echo fread($fp, 1024);
fclose($fp);
?>
---------------------
Comment