Re: [PHP] progress bar for a server side process

2002-09-03 Thread Marek Kilimajer
I've got a nice progress bar with this code: for($i=0;$i<10;$i++) { flush(); sleep(1); echo ''; } But read manual for the flush() function. electroteque wrote: >hi there i have created a script to regenerate thumbnails for a photo >gallery , i have changed my code to use gd true co

[PHP] progress bar for a server side process

2002-09-03 Thread electroteque
hi there i have created a script to regenerate thumbnails for a photo gallery , i have changed my code to use gd true color although it takes forever now , i have it generating 20 at a time then doing the rest but still takes forever , i know its impossible to generate a true progress bar for imag