I am trying to force download a file with a javascript string called 'Proof'. I created a hidden form that triggers an action from a php script. The reason I am not using window.location.href is because the variable Proof is long and the get method could not handle it.
// Upon clicking the button save
$("#save").click(function () {
var Proof = $("#main").html();
var url = '/download-to-file.php';
//send request
jQuery('<form action="'+ url +'" method="post">'+
'<input type="hidden" name="Proof" value="'+ Proof +'" />'+
'</form>').appendTo('body').submit().remove();
});
The php code:
<?php
$Proof = $_POST["Proof"];
$proof = stripslashes($Proof);
$file = 'savedproof.txt';
file_put_contents($file, $proof);
header('Content-disposition: attachment; filename="'.$file.'"');
header("Content-Type: text/txt");
header("Content-Transfer-Encoding: binary");
header('Content-length: '.filesize($file));
header('Accept-Ranges: bytes');
header('Content-Description: File Transfer');
readfile($file);
?>
I get a download dialogue but the file is empty. I even tried with a smaller string like 'test' and still was empty so I am guessing that the hidden form's value is not working.
Thanks