$content = 'Контент xml-файла';
header('Content-type: text/xml');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Disposition: attachment; filename="' . $filename . '"');
header('Content-Length: ' . $fsize);
readfile($path);
Модифицировал свой старый скрипт отдачи ppt файла. Но:
attachment; filename - не нужен наверное, у меня же нет файла на диске что бы его прикрепить
Content-Length - то же самое
И куда поместить переменную $content?