I am writing a TXT file using PHP. I want to insert actual line breaks into the TXT file wherever necessary. I have tried all combinations of \\n \\r \\r\\n \\n\\r ... but t
you could also use chr(10) which is line break.
chr(10)