<? header( "Content-Type: application/octet-stream" ); $fp = fopen( 'Lbox.lzh', 'rb' ); if ( $fp ) { while( TRUE ) { if ( feof( $fp ) ) { break; } $ret = fread( $fp, 1024 ); print $ret; } fclose( $fp ); } ?>
$stdout = fopen('php://stdout', 'w');
$stdout = fopen('php://stdout', 'wb');