Maybe a stupid question,
I have a script that cycles through 1000s of rows in a WHILE loop. In each pass there is an MySQLi update query being triggered, so the script takes a long time to run (10+ mins). (this is on localhost)
In the loop I have an ECHO but the values don't show up until after the entire script is done running. I need the echos to print on the screen while its running.
Is there a way to force it to echo a value on each pass? and not do it all at the end.