Im, используя кнопку, чтобы перейти к скрипту, который создает текстовый файл:
<?php $handle = fopen("file.txt", "w"); fwrite($handle, "text1....."); fclose($handle); ?>
после этого я хочу, чтобы веб-браузер предлагал загрузить или открыть этот файл, как мне это сделать? благодаря
использовать readfile () и заголовки application/octet-stream
октетных application/octet-stream
<?php $handle = fopen("file.txt", "w"); fwrite($handle, "text1....."); fclose($handle); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename('file.txt')); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize('file.txt')); readfile('file.txt'); exit; ?>
$content = file_get_contents ($filename); header ('Content-Type: application/octet-stream'); echo $content;
Должно сработать