evergrean100
Technical User
I have a word doc that works great where it shows database info. The issue is when the records increase over 10 records the Word Doc doesnt come up and just shows all the results in a php web page. Please advise if there is a buffer or length or something I can change to make this work where it will show the Word Document all the time no matter if I am above a certain size of records.
Code:
//database query and listing here
<?php
$fname="report.doc";
$handle = fopen( $fname, "rb" );
$buf = fread( $handle, filesize( $fname ));
fclose( $handle );
$len = strlen( $buf );
header( "Pragma: public" );
header( "Cache-Control: private" );
header( "Connection: close" );
header( "Content-Type: application/msword" );
header( "Content-Length: $len" );
header( "Content-Disposition: inline; filename=\"$fname\"" );
print $buf;
?>