php-db | 2001062
Date: 06/21/01
- Next message: Fernando Ferreras: "[PHP-DB] ORACLE JOB"
- Previous message: Jonathan Hilgeman: "RE: [PHP-DB] Connecting to MySQL"
- In reply to: schiarat <email protected>: "[PHP-DB] raw file header in http"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Try the following:
create a link to a script download.php which will read the file (from
anywhere on the disk) and send it to the user like this:
header("Content-Type: application/force-download");
header("Content-Length: ".filesize($filename));
header("Content-Disposition: attachment; filename=".$orig_filename);
readfile($filename);
exit;
This should give him a download dialog box and set the filename in the
dialog box to $orig_filename.
hope this helps
ciao
andre.
schiarat <email protected> wrote:
>I' ve a file in a directory(/tmp) out from http root of web server.
>I need to open a page that send this file when it is opened (es.:
>opening page.php under netscape it opens a request to save file to
>disk, but the "file is out of www root"), i think i t is possible using
>command header and a raw http command, but i aven't any idea if it is
>possible and if yes in what mode.
>The system i use is apache 1.3.9 under redhat linux 7.1,
>tank's
>Omar
>
>
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Fernando Ferreras: "[PHP-DB] ORACLE JOB"
- Previous message: Jonathan Hilgeman: "RE: [PHP-DB] Connecting to MySQL"
- In reply to: schiarat <email protected>: "[PHP-DB] raw file header in http"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

