How do you undo a or all echo statement(s) in PHP?

Tyilo

New member
Okay here is the PHP code:
<?php
echo "Loading...";
//Do something here that takes a long time
//clear_echo(); or something similar
echo "Done!";
?>
There will first be printed:
"Loading..."
and when its done loading there will only appear:
"Done!"
 
Back
Top