Jump to content

File Uploading


BGamlin

Recommended Posts

Hi,

 

I have a system that uses PHP to create a Word Doc as information is extracted from a table using this code:

 

header("Content-type: applicaton/save");

header("Content-Disposition: attachment; filename="FILE NAME".doc");
header("Pragma: no-cache");
header("Expires: 0");

 

This part of the system I'm trying to implement is working fine. However, what I would ideally like for it to do (and at this point I understand that it sounds a bit pointless) is to save that downloaded file onto a specified folder location on the server directory i.e. to the uploads folder.

 

This will enable all users of the system to then download / view these files as required.

 

I'm not sure whether this is possible or not but and help would be greatly appreciated. Thanks in advance,

 

 

Ben

Link to comment
https://forums.phpfreaks.com/topic/229044-file-uploading/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.