hello, I have a quick question about php headers.
Say if I use something like this to download a file:
Will this waste my servers bandwidth or the server that I'm downloading the content from?
Thanks in advance.
Thanks
Say if I use something like this to download a file:
PHP Code:
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=file.pdf;" );
header("Content-Length: "size);
Thanks in advance.
Thanks
Comment