Skip to content Skip to sidebar Skip to footer

Php: Display A "loading" Page While A Php Script Is Executing

Here is what I've got right now... I have a web page that when accessed, it connects to surveygizmo.com via their open API, retreives a whole lot of data, and then returns that dat

Solution 1:

You'll want to take a look at AJAX. The solution is to send the browser a "loading" page, which contains javascript that shows the loading message, and then connects to the actual data generating server-side script asynchronously. When you have received and processed the data, you can insert it into the DOM and remove the loading message. Googling for XMLHttpRequest will get you the details.

Solution 2:

Create a loading page that displays your desired loading message. Then using ajax (I HIGHLY recommend jQuery) load a separate php file that loads the outside data. Once the data returns to your loading page, it's a simple task of hiding the loading message and replacing it with the output of the ajax.

Solution 3:

<?phpecho"Working...<br/>\r\n"; flush(); //output to the browser before the rest of the execution

     connect_surveygizmo(); //this is going to take while.echo"Finished!";

?>

Post a Comment for "Php: Display A "loading" Page While A Php Script Is Executing"