Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
595 views
in Technique[技术] by (71.8m points)

php - Still get <br> in textarea

I have a text area in html. Then I fill this taxt area like this

Line 1
Line 2
Line 3

But in post, I get like this :

echo $_POST['textarea'] ;

===> Line 1Line 2 Line3

How can I get like this :

Line 1 <br>
Line 2 <br>
Line 3 <br>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use nl2br — Inserts HTML line breaks before all newlines in a string

echo nl2br($_POST['textarea']);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...