Re: [PHP-DB] Flushing PHP output

2001-11-23 Thread Jon Farmer
> in my experience (IE5?) if there is data being "added" to the page, then the > browser will display what it can, and keep adding to it until the stream > breaks or it finishes. Only if the buffer has been flushed! > one thing to note is that you wouldn't be able to do > any tables because they

Re: [PHP-DB] Flushing PHP output

2001-11-23 Thread Jon Farmer
> I want to have a web page access a number of DB's, this will start with one > but on a monthly basis increment by one. So within 12 months their will be > 12 DB's. The web page will access each one in turn starting with the newest > DB and search through this for certain text. After a query has

RE: [PHP-DB] Flushing PHP output

2001-11-22 Thread Beau Lebens
if you just echo() the results/messages as you come across them, the page should "incrementally" load. in my experience (IE5?) if there is data being "added" to the page, then the browser will display what it can, and keep adding to it until the stream breaks or it finishes. one thing to note is