risolto così:
Codice PHP:$txt = '..........';
header('Content-Disposition: attachment; filename="file.txt"');
header('Content-Type: text/plain');
header('Content-Length: ' . strlen($txt));
header('Connection: close');
echo $txt;
risolto così:
Codice PHP:$txt = '..........';
header('Content-Disposition: attachment; filename="file.txt"');
header('Content-Type: text/plain');
header('Content-Length: ' . strlen($txt));
header('Connection: close');
echo $txt;