ok thank you Im going to test it!! =)
On 8/29/06, Peter Lauri <[EMAIL PROTECTED]> wrote:
<?php
header("Content-Type: application/octet-stream");
readfile("path_to_compressed_file");
?>
Should do it then… if you know the path to the file :)
------------------------------
*From:* Rafael Mora [mailto:[EMAIL PROTECTED]
*Sent:* Wednesday, August 30, 2006 10:10 AM
*To:* Peter Lauri
*Subject:* Re: [PHP] send a file or stream
1. A user sends a request to your server to get a compressed file
2. You compress the file on the server
3. I want to send back the file to the user
On 8/29/06, *Peter Lauri* <[EMAIL PROTECTED]> wrote:
Do you mean the following:
1. A user sends a request to your server to get a compressed file
2. You compress the file on the server
3. You want to send back to compressed file to the server
It is number 3 you asking for?
In that case:
<?php
header("Content-Type: application/octet-stream");
readfile("path_to_compressed_file");
?>
/Peter
-----Original Message-----
From: Rafael Mora [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 30, 2006 2:34 AM
To: [email protected]
Subject: [PHP] send a file or stream
Hi!
i want to send a file or output stream in a .php, but first compress it, I
tryed the example to compress files but how do i do to send as answer to
the
http request??
Rafa