Does anybody know how to do the following:
<?php
echo "Bla1";
--wait 1 sec.--
echo "$Bla2";
?>
What do i use to have the delay between the echo-statements. The first statement has to show up on the page and then the second one should show up after 1 sec.
<?php
echo "Bla1";
--wait 1 sec.--
echo "$Bla2";
?>
What do i use to have the delay between the echo-statements. The first statement has to show up on the page and then the second one should show up after 1 sec.
Comment