I have two different servers and a script like this:
echo "<div style=\"some style\">whatever</div>";
for($i=0;$i<150000;$i++)
{ ... }
Now, I realized that on my first server the PHP-script will directly show me the whatever and then start going through the for loop. The second server though doesn't show the div, it directly starts with the loop. But I need the script to show first the HTML code and then do the rest of the script.
Is there a possibility to change this?
Thank you!