freelanceprogrammers.org Forum Index » PHP
how to download text files
Joined: 15 Jul 2005
Posts: 2
how to download text files
Hi everybody.
I`m trying to download a file(a text file) from within my application,
but no sucess.
The file is downloaded, but empty.
Below is my code. What I`m doing wrong?
Thanks,
Sergio
<?php
// load content into var
$filecontent="Some text/code im creating in the script";
$downloadfile="myfile.txt";
header("Content-disposition: attachment; filename=$downloadfile");
header("Content-length", filesize("$filename"));
header("Content-Length: ".strlen($filecontent));
header("Content-type: text/plain");
header("Content-Type: application/force-download");
header("Content-Transfer-Encoding: binary");
header("Pragma: no-cache");
header("Expires: 0");
?>
Joined: 08 Mar 2005
Posts: 8
how to download text files
at the end of your script add this line
echo $filecontent;
You have the headers correct, you just aren`t actually pushing the data
back to the client.
Thank you,
Ryan Sexton
On Nov 22, 2005, at 4:26 PM, Sergio de A.Gonzalez wrote:
Hi everybody.
I`m trying to download a file(a text file) from within my application,
but no sucess.
The file is downloaded, but empty.
Below is my code. What I`m doing wrong?
Thanks,
Sergio
<?php
// load content into var
$filecontent="Some text/code im creating in the script";
$downloadfile="myfile.txt";
header("Content-disposition: attachment; filename=$downloadfile");
header("Content-length", filesize("$filename"));
header("Content-Length: ".strlen($filecontent));
header("Content-type: text/plain");
header("Content-Type: application/force-download");
header("Content-Transfer-Encoding: binary");
header("Pragma: no-cache");
header("Expires: 0");
?>
PHP Data object relational mapping generator -
http://www.meta-language.net/
Yahoo! Groups Links
All times are GMT
Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Freelace Website Designer - Customer web design and software building.
China Wholesale - Electronics Products
Character Studio - Tutorials and Help
China Wholesale - Electronics Products
Character Studio - Tutorials and Help







