1
I own a php page index php. that at first loads another php page php page. with a load():
$("#div").load('pagina.php');
On this page I have a loop For with a time consuming sql and I have to show the progress of this query. The problem is that this page is only loaded in the div after the end of the query.
There is a way for me to bring a load with the progress of the page database php page. into this javascript that first loads on the page index php. ? For example:
$('#div').html("Carregando...");
$("#div").load('pagina.php');
But instead of the "Loading" message, I need to show some progress.
Thank you.
With progress you speak from 0% to 100%?
– PauloHDSousa
It can be 0% to 100% or split. I just need an estimate that the page is making progress.
– Alisson Menezes