wispas Posted January 12, 2010 Share Posted January 12, 2010 I have a simple form with a text area. i add 2 line breaks to start a new paragraph and insert it into the mysql database. so i retrieve the post data: $city_desc = $_POST['city_desc'] ; and it will stick all of the data together when i output with php.. i want it to retain the 2 line breaks so they are like new paragraphs... any ideas? Quote Link to comment Share on other sites More sharing options...
Zane Posted January 12, 2010 Share Posted January 12, 2010 look at nl2br() Quote Link to comment Share on other sites More sharing options...
fooDigi Posted January 12, 2010 Share Posted January 12, 2010 odd are the line breaks are being stored, but when parsed as html they are run together. try echo'ing your content with nl2br() Quote Link to comment Share on other sites More sharing options...
greatstar00 Posted January 12, 2010 Share Posted January 12, 2010 if u dont want to use nl2br u can use <pre>textarea data</pre> Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted January 12, 2010 Share Posted January 12, 2010 odd are the line breaks are being stored, but when parsed as html they are run together. try echo'ing your content with nl2br() This is because web browsers ignore white space characters, such as new lines. In order for a new line to appear in a web browser you need use the <br /> tag. nl2br() converts new lines into <br /> tags. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.