Hi How can we download a file with php?? I make a file and I want that the user can download this file with an hypertext link on his web page. I've never done something like this before. Can somebody helps me ? Thanks
It has nothing to do with PHP. Just create a link to the file, just as you would create a link to a web page:
<A HREF="myFile.txt">download file!</A>
-- Rich