"Ashwin Purohit" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi everybody, > > I have this script in a file that allows users to upload files, and I want > to know who submitted what so I write $userfile_name and $credit1(their > name) to CREDIT.txt in the same directory like so : > > $credit = $userfile_name.': '.$credit1."\n"; > $fp = fopen('CREDIT.txt','a'); > fwrite($fp, $credit); > fclose($fp); > > But every new submission ends up on the same line, there is never a line > break in the text. Any suggestions?
Try "\r\n" or chr(10): $credit = $userfile_name.': '.$credit1."\r\n"; $credit = $userfile_name.': '.$credit1.chr(10); Regards, Torsten -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php