принудительная скачка
Как здесь: http://www.ovecon.ru/instructions.php
Я пробую делать так:
ob_start();
header("Cache-control: private");
header('Content-type: application/force-download');
header("Content-Length: ".filesize("upload/catalog/ru/".$row[file_file]));
header("Content-Disposition: filename=".$row[file_file]);
readfile("upload/catalog/ru/".$row[file_file]);
ob_end_flush();
но пдф-файл броузер все-равно грузит сразу в своем окне. А как сделать, чтобы предлагал на скачивание?
Код:
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=file.pdf;");
header("Content-Disposition: attachment; filename=file.pdf;");
спасибо. помогло