Skip to content

Instantly share code, notes, and snippets.

@drewjoh
Created April 14, 2010 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save drewjoh/365509 to your computer and use it in GitHub Desktop.
Save drewjoh/365509 to your computer and use it in GitHub Desktop.
<?php
$file = @fopen($filename,"r");
if ($file)
{
while(!feof($file))
{
print(fread($file, 1024*4));
flush();
ob_flush();
}
@fclose($file);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment