Loading Animation While PHP Loop Runs
Solution 1:
The way you have it set up, what you want is not possible. That's because of how PHP works.
When PHP is embedded in an HTML file like that, it's run on the server before the page is sent to the user. The timeline goes like this:
- The user requests the page
- The server finds the file for that page
- The server runs the code inside each block and substitutes in the result for the php tag.
- The server sends the generated HTML document to the user
As you can see, by the time the user sees anything, all the php code has already finished.
To get any kind of dynamic behavior in your webpage (like a loading bar) you HAVE to use JavaScript (or something that compiles to JS like TypeScript). That's because JavaScript code is sent to the user along with the HTML and executed by the user's browser after the page loads.
Presumably, you want to show a progress meter because you wanted to run some PHP code that would take a while. You can still do that. Instead of embedding PHP inside HTML, you can make a stand-alone PHP file that does the task you want and then have the JavaScript on your page send a second request to that server and get a result while showing its progress. The terms you want to google are "PHP REST server" (for the server) and "JavaScript XHR" or "JavaScript fetch" for sending requests from the client.
Post a Comment for "Loading Animation While PHP Loop Runs"