Re: [PHP] Updating HTML on page

2010-04-06 Thread tedd
At 8:12 PM -0600 4/5/10, Ashley M. Kirchner wrote: I have a PHP script that queries a DB to get a list of image names. Then it processes each name and generate thumbnails and what not. What I want to do is have a page called (through the browser) which updates as the PHP process in the

Re: [PHP] Updating HTML on page

2010-04-05 Thread TG
The only way to do it with PHP alone would be to control the output buffering and I've found that to be inconsistant in quality and predictability with different browsers even web servers. I'm sure there's an art to getting that all working well with various technologies that are involved in

RE: [PHP] Updating HTML on page

2010-04-05 Thread Ashley M. Kirchner
? -Original Message- From: TG [mailto:tg-...@gryffyndevelopment.com] Sent: Monday, April 05, 2010 8:48 PM To: Ashley M. Kirchner; php-general@lists.php.net Subject: Re: [PHP] Updating HTML on page The only way to do it with PHP alone would be to control the output buffering and I've found

Re: [PHP] Updating HTML on page

2010-04-05 Thread Paul M Foster
On Mon, Apr 05, 2010 at 09:29:26PM -0600, Ashley M. Kirchner wrote: Hrm, been looking at it for a while now and I can feel a headache coming up. I think I need to have one PHP script that does the processing, and another that the user pulls up in their browser. That one pings the processor