Panjabel Posted July 17, 2007 Share Posted July 17, 2007 I have a textarea but when i press enter it doesn't make a new line before adding to database i want, when i press enter to make a new line in text, lke "<br>" any advice ? thanks Quote Link to comment Share on other sites More sharing options...
lur Posted July 17, 2007 Share Posted July 17, 2007 http://php.net/nl2br Quote Link to comment Share on other sites More sharing options...
Panjabel Posted July 17, 2007 Author Share Posted July 17, 2007 <?php $comment = $_POST['textarea_comment']; $comment = nl2br($comment); print $comment; ?> it doesn't make a new line when i press enter in textarea why ? Quote Link to comment Share on other sites More sharing options...
Panjabel Posted July 17, 2007 Author Share Posted July 17, 2007 up Quote Link to comment Share on other sites More sharing options...
Panjabel Posted July 17, 2007 Author Share Posted July 17, 2007 it works but it doesn't insert n mysql the new line, i mean it doesn't add "<br>" Quote Link to comment Share on other sites More sharing options...
Daniel0 Posted July 17, 2007 Share Posted July 17, 2007 It DOES make a new line ( \n ), but not an HTML line break ( <br /> ). Quote Link to comment Share on other sites More sharing options...
Panjabel Posted July 17, 2007 Author Share Posted July 17, 2007 confused with your code ??? Quote Link to comment Share on other sites More sharing options...
GingerRobot Posted July 17, 2007 Share Posted July 17, 2007 A newline character is not the same as an HTML line break. Whenever you OUTPUT your data that you have stored, you'll need the nl2br() function. You dont use it before you enter the data into the database. Quote Link to comment Share on other sites More sharing options...
Panjabel Posted July 17, 2007 Author Share Posted July 17, 2007 $comment = nl2br($comment); echo "insert into site_database.comentarii set `comment`='$comment'"; it doesn't print the new lines why ? 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.