Jump to content

[SOLVED] Download file using form button


AshmanSNET

Recommended Posts

G'day,

I'm having a bit of difficulty with my download page. I'm trying to get a file to download from a path I set when the button is pressed, however the header() doesn't seem to like me entering the path to the file.

 

How would I go about achieving this? I've looked for information on the net but can't seem to find anything helpful.

 

Thanks

 

Ashman

www.settlers.net

Link to comment
Share on other sites

This downloads the file specified in $file (with full path):

 

$file = "path/file.whatever"
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Content-Transfer-Encoding: binary');
readfile($file);
exit;

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.