I downloaded this script of the Snippets partrs of this site, and was wondering if it was possible to convert it so that it downloads of a web site rather than a local file?
Thanks
#######
//Put this script in the header of a file
//You can submit $Dir, $File_Name, $File_Extension by another script
header("Content-disposition: filename=$File_Name.$File_Extension");
header("Content-type: application/force-download");
readfile("$Dir.$File_Name.$File_Extension");
#######