Issue: I'm pulling content off a remote server using the include() and require() functions, which is then incorporated into the current page.
Problem: There can at time be a significant delay while the remote content if fetched, and all the user sees is a blank page with no indication anything's happening.
Question: What's the best way to display some kind of status message to the user while the data is being retrieved? All I really need is a simple string of text - like "One moment..." to appear instead of a blank page.
Any suggestions would be appreciated.
Steve