Re: [PHP] How can I insert the data into the begining of a text file

2001-08-23 Thread Christian Reiniger
On Wednesday 22 August 2001 18:14, Zenith wrote: > I have try this but, PHP just overwrite the prevoius content, and write > the new message into the file. > But I want to INSERT the new message into the head of a file. You actually have to read everything, insert the line, write everything. fil

Re: [PHP] How can I insert the data into the begining of a text file

2001-08-22 Thread Zenith
s:[EMAIL PROTECTED]... > Use $fp = fopen($file, "r+"); > > PHP Manual would have told you this. > > > Niklas > > -Original Message----- > From: Zenith [mailto:[EMAIL PROTECTED]] > Sent: 22. elokuuta 2001 12:39 > To: [EMAIL PROTECTED] > Subject

RE: [PHP] How can I insert the data into the begining of a text file

2001-08-22 Thread Niklas Lampén
Use $fp = fopen($file, "r+"); PHP Manual would have told you this. Niklas -Original Message- From: Zenith [mailto:[EMAIL PROTECTED]] Sent: 22. elokuuta 2001 12:39 To: [EMAIL PROTECTED] Subject: [PHP] How can I insert the data into the begining of a text file I orgi

[PHP] How can I insert the data into the begining of a text file

2001-08-22 Thread Zenith
I orginal have a function like the following... $fp = fopen ( $HTTP_SERVER_VARS['DOCUMENT_ROOT']."/log/debug_message.txt", "a" ); fputs ( $fp, "\nDebug message from : $PHP_SELF\n" ); fputs ( $fp, "\t$message\n\n" ); fclose ( $fp ); But I found that, the result is, all message is append t