I want to write a text file in the server through Php, and have the client to download that file.
How would i do that?
Essentially the client should be able to download the file from the server.
I want to write a text file in the server through Php, and have the client to download that file.
How would i do that?
Essentially the client should be able to download the file from the server.
In addition to the data already posted, there is a header you might want to try.
Its only a suggestion to how its meant to be handled, and the user agent can chose to ignore it, and simply display the file in the window if it knows how:
See Rfc2183 for more on the Content-Disposition header.
Just post a link on the site to http://example.com/textfile.php
And in that PHP file you put the following code:
That way you can create the content dynamic (from a database)... Try to Google to oter "Content-Type" if this one is not the one you are looking for.
If you set the content type to application/octet-stream, the browser will ALWAYS offer file as a download, and will never attempt to display it internally, no matter what type of file it is.
PHP has a number of very simplistic, C-like functions for writing to files. Here is an easy example:
It's a very basic example, but you can find more references to this sort of operation here:
PHP fopen
This is the best way to do it, supposing you don't want the user to see the real URL of the file.
Additionally, you could protect your files with mod_access.