Re: [PHP] Query about gzinflate

2005-11-15 Thread Curt Zirzow
On Tue, Nov 15, 2005 at 09:28:22PM -0800, kumar kumar wrote: > HI > > How to uncompress compressed data with php://input > > Which one of the following is correct > > 1 .$unzip = gzinflate("php://input","r"); > $getdata = fopen($unzip."r"); > > 2. gzcompress("php://input","r"); > > $

[PHP] Query about gzinflate

2005-11-15 Thread kumar kumar
HI How to uncompress compressed data with php://input Which one of the following is correct 1 .$unzip = gzinflate("php://input","r"); $getdata = fopen($unzip."r"); 2. gzcompress("php://input","r"); $getdata = fopen($unzip."r"); what the best solution help me With regards Praveen