Hello everybody!
I am new to php coding and I want to ask simple question.
Can you execute php script so you can display echoes as they are proceeded?
So you have..
echo("Some line of text");
.... another code
echo("Second line of text");
And user will see "Some line of text" immidiately, then another code is executed and user will see "second line of text" after the "another code" is executed and so on...
Sorry for my broken English
Thanks!