Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-14 Thread George Langley
On 2011-07-14, at 12:50 AM, Midhun Girish wrote: > > > On Thu, Jul 14, 2011 at 11:18 AM, George Langley > wrote: > On 2011-07-13, at 11:20 PM, Midhun Girish wrote: > > > Hi, > > > > > > - Browsers generally have a 5 minute time-out. If you send the PDF directly > > to the browser and reach

Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-13 Thread George Langley
On 2011-07-13, at 11:20 PM, Midhun Girish wrote: > Hi, > > > - Browsers generally have a 5 minute time-out. If you send the PDF directly > to the browser and reach the limit, it will be lost. It is therefore advised > for very big documents to generate them in a file, and to send some data to

Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-13 Thread Midhun Girish
Hi, > - Browsers generally have a 5 minute time-out. If you send the PDF directly > to the browser and reach the limit, it will be lost. It is therefore advised > for very big documents to generate them in a file, and to send some data to > the browser from time to time (with a call to flush() to

Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-13 Thread George Langley
On 2011-07-13, at 9:59 PM, Midhun Girish wrote: > > I have an erp application developed in php (zend framework actually). There > are many reports which the admin level users can take from the application. > Some reports have more than 600,000 records. The viewing of reports in the > browser is fi