Downloading of File on a specific Location

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
habib009pk
Forum Commoner
Posts: 43
Joined: Sun Jul 05, 2009 11:28 pm

Downloading of File on a specific Location

Post by habib009pk »

Hi Friends,

I am facing a problem, i want to download a file on a specific loacation. Actually i have the URL of the image file through which i want to download that image.

I am using a code which is use for download the same images

i.e

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

but this code can open the save dialog box but i want that image can be saved in the temporary directory for temporary time then i want to attach these images in a mail but this is the next phase.

Kindly help me regarding this that image can be save in any directory(fixed) without opening the save dialog box.

Waiting for you reply

Regards
User avatar
McInfo
DevNet Resident
Posts: 1532
Joined: Wed Apr 01, 2009 1:31 pm

Re: Downloading of File on a specific Location

Post by McInfo »

The file's source (where it's coming from) and destination (where it's going to) are not clear in your question.

Edit: This post was recovered from search engine cache.
Last edited by McInfo on Thu Jun 17, 2010 2:07 pm, edited 1 time in total.
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: Downloading of File on a specific Location

Post by requinix »

Sounds like you want to download the file to your computer without having to use the Save dialog.

You can't.
Post Reply