I want to be able to display something in the browser before the script is finished, is there any way to do this?
For example, here is a script:
And I want you to see the page load and display the numbers 1-5.
The script I need this for actually takes so long to load because it is opening several web pages and pulling information from them, and I don't want people to stop the loading thinking there is something wrong, I want the script to display a little update every few seconds or something...
For example, here is a script:
| Code: |
| <?php
echo "1"; echo "2"; echo "3"; echo "4"; echo "5"; ?> |
And I want you to see the page load and display the numbers 1-5.
The script I need this for actually takes so long to load because it is opening several web pages and pulling information from them, and I don't want people to stop the loading thinking there is something wrong, I want the script to display a little update every few seconds or something...
