By default, PHP will buffer your output and send a fewer number of larger chunks to the user. You can use flush to send the contents of write buffer to the user immediately:
Loading...
Hello
This won't work if you've previously enabled output buffering by calling ob_start or the php.ini directive output_buffering to 1.