Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <? //Generate text file on the fly
- header("Content-type: text/plain");
- header("Content-Disposition: attachment; filename=savethis.txt");
- // do your Db stuff here to get the content into $content
- print "This is some text...\n";
- print $content;
- /?>
Add Comment
Please, Sign In to add comment