Given a simple script
<?php
echo "hi";
foreach ($_GET['arr'] as $a)
{
echo $a ."<br>";
}
echo "<p>Masel tov</p>";
foreach ($_GET['arr2'] as $a)
{
echo $a ."<br>";
}
I expect the script to echo continuously. Instead, the script echoes when finished. Even the first " hi" gets an echo after 1 minute when the script ends.
Is there a way to prevent this, or why is this so?
Email source
share