Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
$download_dir = 'attach';
$counter_dir = 'attach';
$path = $download_dir.'/'.$HTTP_GET_VARS['get'];
if(file_exists($path))
{
$file = fopen($counter_dir.'/'.$HTTP_GET_VARS['get'].'.txt','r+');
$count = fread($file,100);
fclose($file); // closes file
$count=$count+1;
$file = fopen($counter_dir.'/'.$HTTP_GET_VARS['get'].'.txt','w');
fwrite($file, $count);
fclose($file);
$size = filesize($path);
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.$HTTP_GET_VARS['get']);
header('Content-Length: '.$size);
readfile($path,$size);
}else{
echo "Не намерих такъв файл ;("; //тук въведете Вашето съобщения при грешка на сваляне на файла
}
?>
nanov_91 каза:Забравих да кажа че линковете са записаани в база данни!