Generating txt files with php ?

Status
Not open for further replies.

pierreba

Solid State Member
Messages
11
Hello,

Is there any way that php can generate a .txt file ?

If not, is there any other language or way ?

Thank you in advance.
 
Yep, hit www.php.net and look at the fwrite(), fopen() functions. Theese will do everything you need to do. It will be a case of telling it to write to a file but if the file does not exist then create it.

Remember to chmod any text file to give it the correct permissions otherwise reading and writing to it wont happen.
 
Status
Not open for further replies.
Back
Top Bottom