What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » How do you make a php file a download?

How do you make a php file a download?
Author: Message:
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
RE: How do you make a php file a download?
quote:
Originally posted by Segosa
You can save it as .phps (s = source) which shows them syntax-highlighted source code and the script isn't parsed..
and if your server dosnt support that use a script like this

code:
<?

$file = $_GET['file'];
if(isset($file)){
$file = "./$file";
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=$file");

$pic = fopen($file,'r');
$php = fread($pic,filesize($file));
fclose($pic);
echo $php;

}else{
echo "blah";
}

?>


which will take ?file=filename  on the url then ask the user if they wish to download the file , this will only download files from the same directory the script is in.
[Image: dt2.0v2.png]      Happy Birthday, WDZ
03-20-2005 11:46 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
How do you make a php file a download? - by .Roy on 03-20-2005 at 10:34 AM
RE: How do you make a php file a download? - by Ahmad on 03-20-2005 at 10:38 AM
RE: How do you make a php file a download? - by .Roy on 03-20-2005 at 10:42 AM
RE: How do you make a php file a download? - by Millenium_edition on 03-20-2005 at 10:45 AM
RE: How do you make a php file a download? - by John Anderton on 03-20-2005 at 11:22 AM
RE: How do you make a php file a download? - by segosa on 03-20-2005 at 11:39 AM
RE: How do you make a php file a download? - by -dt- on 03-20-2005 at 11:46 AM
RE: How do you make a php file a download? - by .Roy on 03-20-2005 at 01:10 PM
RE: How do you make a php file a download? - by -dt- on 03-20-2005 at 01:14 PM
RE: How do you make a php file a download? - by .Roy on 03-20-2005 at 01:29 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On