|
-
Mar 13th, 2003, 05:36 AM
#1
Thread Starter
Member
Textarea & PHP - ignores new lines
Hi
In my database there are two main sections, "view" and "edit".
In the "Edit" section I have a textarea where I put some information on several paragraphs with a gap in between each paragraph.
However, in the "View" section which just prints the contents of the textarea it ignores my gaps which I have put in using the enter key!
This should be something simple to fix, but im new to PHP. How do I do it?!
Many thanks
-
Mar 13th, 2003, 05:34 PM
#2
Frenzied Member
when you enter teh text and then hit enter and then you click on submit, where does it go and how do you save it to the db? also how do you pull it out of the db for that matter.
-
Mar 14th, 2003, 08:15 AM
#3
Stuck in the 80s
You have two options:
1) use str_replace() to replace the newlines with <br>
Code:
$str_to_replace = str_replace("\n", "<br>\n", $str_to_replace);
2) Instead of just hitting enter twice, stick a <br><br> in there
This is paragraph one.
<br><br>
This is paragraph two.
<br><br>
This is paragraph three.
<br><br>
-
Mar 18th, 2003, 06:05 AM
#4
Lively Member
PHP has a function specifically for this that produces XHTML-compliant code.
nl2br()
PHP Code:
echo nl2br($row['text']);
There's something I've noticed in the last year or so...
Australian's are good at EVERYTHING !!!
-
Mar 24th, 2003, 07:02 PM
#5
Stuck in the 80s
Originally posted by DJ P@CkMaN
PHP has a function specifically for this that produces XHTML-compliant code.
nl2br()
PHP Code:
echo nl2br($row['text']);
I've heard of a few people having problems with that function.
-
Mar 25th, 2003, 12:33 PM
#6
Frenzied Member
I really hate when you answer posts and they never come back and let us know if it worked or not.
-
Mar 25th, 2003, 02:51 PM
#7
Stuck in the 80s
Originally posted by phpman
I really hate when you answer posts and they never come back and let us know if it worked or not.
Me too, buddy.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|