/    Sign up×
Community /Pin to ProfileBookmark

Word Document size limitation

I have a PHP that opens up a word document 2003 and it works great where it shows Oracle database info. The issue is when the record total is 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;
?>
[/code]

to post a comment
PHP

0Be the first to comment 😎

×

Success!

Help @florida spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.9,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...