Is there a way to show a progress bar in php? I like to let the user know what the php script is doing.
Here's an result example from my website http://www.bestsellprice.com/search.php?itemnum=0&keyword=harry+potter+book
I have a static loading image with some text that says "Loading...", when the page is fully loaded, I hide the loading div. My php script goes out to the amazon api, ebay api and screen scrapes a couple of other sites and instead of a static loading div I would like to update that loading div with the following
Loading amazon.com
//progress amazon, when finished update loading div
Loading ebay.com
etc. etc.
Is this possible to do? if so whats the best approach? Thanks ahead of time for the help!