Tagged Questions

10
votes
3answers
17k views

PHP Echo Line Breaks

I'm pretty sure this has already been answered, but for the life of me I could not find the question or answer after browsing/searching StackOverflow for the last 20 minutes. Anyway, the question: ...
4
votes
2answers
7k views

Removing redundant line breaks with regular expressions

I'm developing a single serving site in PHP that simply displays messages that are posted by visitors (ideally surrounding the topic of the website). Anyone can post up to three messages an hour. ...
2
votes
2answers
143 views

Converting line breaks into <li> tags

I'm creating an upload form that has a text area for users to input cooking recipes with. Essentially, what I want to do is wrap each line in a <li> tag for output purposes. I've been trying to ...
1
vote
2answers
49 views

PHP - Form mail converting line breaks to spaces

I have a <textarea> in a form for user comments, and when the contents are passed to form mail, the line breaks are being converted to spaces. How can I preserve the line breaks that the form's ...
1
vote
5answers
1k views

file_put_contents, file_append and line breaks

I'm writing a PHP script that adds numbers into a text file. I want to have one number on every line, like this: 1 5 8 12 If I use file_put_contents($filename, $commentnumber, FILE_APPEND), the ...
-3
votes
4answers
66 views

Replace newline characters with actual newlines?

Before $string = "this is \n a line \n break"; After $string = "this is a line break"; I want there to be an actual line break (not \n) on the string. Any ideas? To clarify I know I can ...