Pagination need a human action. With 7000 records and ~20 seconds per record, it would need so much time!
Do you have a link/code snippet to share for ajax use, please?
User Profile
Collapse
-
Thank you for your answer Rabbit!
I'm searching a way to fire my ECHO after each record, a live update. So i don't want to have to wait the end of the script (can take several hours).Leave a comment:
-
Display mysql records from database 1 by 1
In my PHP script, I have a basic mysql call :
I have +7000 records in my database (and growing), so i'd like to show the update process result 1 by 1 and not showing...Code:$sql = "SELECT * FROM ..."; $req = mysql_query($sql) or die(); while($data0 = mysql_fetch_assoc($req)) { //some update stuff here echo "Important information about update..."; }
No activity results to display
Show More
Leave a comment: