Re: [PHP] Delaying Printed Output

2001-03-25 Thread Greg Scott
> Have you looked into javascript/java? This client has worked up a Power Point slide presentation that he wants me to duplicate on the web. I had a PHP solution that was working fine, but then he decided to jazz up his Power Point presentation some. The adding a single line of text at time

Re: [PHP] Delaying Printed Output

2001-03-24 Thread Greg Scott
> You might try using flush() after the prints. > I tried that too, but at least in Netscape 6, it still waits until everything is done before displaying. I think Jack must be correct that this isn't possible for browser display. Thanks, Greg -- PHP General Mailing List (http://www.php.net

Re: [PHP] Delaying Printed Output

2001-03-24 Thread Greg Scott
> You can use the following commands: > > sleep(seconds); > usleep(microseconds); I've tried those 2 functions, in an example like this: PRINT "This"; SLEEP(2) ; PRINT "Is a"; SLEEP(2); PRINT "TEST"; But the way it works in the browser is to wait for a total of 4 seconds and then it displays

[PHP] Delaying Printed Output

2001-03-24 Thread Greg Scott
Is it possible using PHP to print a single line of text to a browser, have a second or two delay and then print the next line, etc. etc.? Greg -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To con