Search found 3 matches

by mei
Mon Jan 13, 2003 9:06 am
Forum: PHP - Code
Topic: real time Output from php to Browser
Replies: 5
Views: 1572

my browsers:
Mozilla/5.0- Don't work
IE 5.5 - Don't work
Netscape Comunicator 4.7 - Don't work

Maby need something change in webserver configuration.... but i don't know- what.... :(
by mei
Mon Jan 13, 2003 4:12 am
Forum: PHP - Code
Topic: real time Output from php to Browser
Replies: 5
Views: 1572

Flush() don't work exactly.... how i understand in manual.... Flush don't works with browsers output....

example:

echo "first output\n";
flush();
sleep(10);
esho "second output\n";

line "first output" show on browser after 10 sec. with "second output";
by mei
Mon Jan 13, 2003 3:39 am
Forum: PHP - Code
Topic: real time Output from php to Browser
Replies: 5
Views: 1572

real time Output from php to Browser

I need real time otput from php to Browser.... For example: first i print on Screen HTML content... then i need register transaction and output on Screen registration-status.... But that don't works.... first register transaction and then pript on Screen HTML content and registration-status in one t...