Re: [PHP] push data directlly to the client(was Creating zip files)

2008-07-08 Thread Shawn McKenzie
Shawn McKenzie wrote: It flance wrote: Hi, Thank you for your answer. Now i figured out how to build the zip archive. I am using a class that returns the compressed data: $zipedresult = $zipfile->zipped_file(); This data, i can write it to a file. but i would like to make it downloadable w

Re: [PHP] push data directlly to the client(was Creating zip files)

2008-07-08 Thread Shawn McKenzie
It flance wrote: Hi, Thank you for your answer. Now i figured out how to build the zip archive. I am using a class that returns the compressed data: $zipedresult = $zipfile->zipped_file(); This data, i can write it to a file. but i would like to make it downloadable without having to store it

Re: [PHP] push data directlly to the client(was Creating zip files)

2008-07-08 Thread It flance
Hi, Thank you for your answer. Now i figured out how to build the zip archive. I am using a class that returns the compressed data: $zipedresult = $zipfile->zipped_file(); This data, i can write it to a file. but i would like to make it downloadable without having to store it in the server. Is