just-j Posted July 24, 2006 Share Posted July 24, 2006 i want to do somthing like this..fwrite($fo, this is NEWLINE);fwrite($fo, a test NEWLINE);and make the out come "this isa test"and not "this isa test" Link to comment https://forums.phpfreaks.com/topic/15464-how-do-i-make-a-line-break-in-fwrite/ Share on other sites More sharing options...
designationlocutus Posted July 24, 2006 Share Posted July 24, 2006 Does \n work? Link to comment https://forums.phpfreaks.com/topic/15464-how-do-i-make-a-line-break-in-fwrite/#findComment-62715 Share on other sites More sharing options...
just-j Posted July 24, 2006 Author Share Posted July 24, 2006 with fwrite($fo, $towrite \n);i get Warning: Unexpected character in input: '\' (ASCII=92) state=1 in C:\wamp5\www\tbbc\forum\write.php on line 25Parse error: parse error, unexpected T_STRING in C:\wamp5\www\tbbc\forum\write.php on line 25 Link to comment https://forums.phpfreaks.com/topic/15464-how-do-i-make-a-line-break-in-fwrite/#findComment-62722 Share on other sites More sharing options...
king arthur Posted July 24, 2006 Share Posted July 24, 2006 Try fwrite($fo, $towrite . "\n"); Link to comment https://forums.phpfreaks.com/topic/15464-how-do-i-make-a-line-break-in-fwrite/#findComment-62726 Share on other sites More sharing options...
just-j Posted July 24, 2006 Author Share Posted July 24, 2006 i did the fwrite($fo, $towrite . "\n"); and it dosent break to a new line in the .txt file.. it just adds this little block every where the \n is and keeps the text on the same line. if i echo the .txt with php, then php recognises those blocks as line breaks but that does me no good for what im tring to accomplish. Link to comment https://forums.phpfreaks.com/topic/15464-how-do-i-make-a-line-break-in-fwrite/#findComment-62760 Share on other sites More sharing options...
king arthur Posted July 24, 2006 Share Posted July 24, 2006 Then try a carriage return character too: "\r\n". Link to comment https://forums.phpfreaks.com/topic/15464-how-do-i-make-a-line-break-in-fwrite/#findComment-62774 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.