PHP: Display a “loading” page while a php script is executing

后端 未结 3 667
忘了有多久
忘了有多久 2021-01-16 02:14

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

3条回答
  •  北海茫月
    2021-01-16 02:38

    \r\n"; flush(); //output to the browser before the rest of the execution
    
         connect_surveygizmo(); //this is going to take while.
    
         echo "Finished!";
    
    ?>
    

提交回复
热议问题