Voglio inviare una "richiesta di download ajax" quando clicco su un pulsante, quindi ho provato in questo modo:
javascript:
var xhr = new XMLHttpRequest();
xhr.open("GET", "download.php");
xhr.send();
download.php:
<?
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename= file.txt");
header("Content-Transfer-Encoding: binary");
readfile("file.txt");
?>
ma non funziona come previsto, come posso fare? Grazie in anticipo
location.href='download.php';