Differences
This shows you the differences between two versions of the page.
docs:programming:php:direct_file_download [2007/01/30 15:14] – created billh | docs:programming:php:direct_file_download [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Direct File Download ====== | ||
+ | The goal is to provide users with a file download, directly in a php script rather than a hard link on a remote filesystem. | ||
+ | FIXME All of this will likely work, but so far is untested | ||
+ | |||
+ | <code php> | ||
+ | <? | ||
+ | $dir="/ | ||
+ | if (isset($_REQUEST[" | ||
+ | $file=$dir.$_REQUEST[" | ||
+ | header(" | ||
+ | header(" | ||
+ | header(" | ||
+ | header(" | ||
+ | readfile(" | ||
+ | } else { | ||
+ | echo "No file selected"; | ||
+ | } | ||
+ | ?> | ||
+ | </ | ||
+ | |||
+ | ===== External Links ===== | ||
+ | * http:// | ||
+ | * http:// |