This commit is contained in:
Luke Ogburn
2019-04-08 22:15:45 -04:00
commit 2ad617d74a
5 changed files with 74 additions and 0 deletions

6
download.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
$content = "content and things like it are here";
header('Content-type: text/plain');
header('Content-Disposition: attachment; filename="encrypted.txt"');
echo $content;
?>