I am upgrading a site from PHP 5.4 to 7.2 and the main thing I have to change is all the mysql_
commands to use mysqli
. In one case, there is a page that, on the current, production site, queries a database and populates a table with the results as they come in. So the page loads up, but continues loading, with rows appearing in the table until there are no more matching results, at which point the page stops loading.
I am running a dev version locally and the only thing I have changed on this page is switching the mysql_
code to procedural-style mysqli
, but now, the page totally blocks on loading until all the results are in, then the page appears with all the table rows populated. Can anybody point me to where I should look to re-create the current behavior? Is it a database setting? Something in mysqli
? Any help is greatly appreciated.