The point is this. There is a code
header('Content-Disposition: attachment; filename="file_name.zip"');
This header does not support the full address of the file location. Can I somehow fix this, so that, say, such an address can be inserted
http://hostname.net/folder/file_name.zip
filename="file_name.zip"
simply specifies how to default name the uploaded file. And to start the download, the contents of the file must somehow be passed to the user. - ling