Files
CS-Create/download.php
Luke Ogburn 2ad617d74a init
2019-04-08 22:15:45 -04:00

6 lines
186 B
PHP

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