what is nl2br?
Answers were Sorted based on User's Feedback
Answer / prantik gautam
nl2br() means newline to break. Actually when we retrieve
data from database using PHP mysql code, the nl2br()
function helps to get the format to maintain the sequence as
was at the time of insertion.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / rameshmjs
nl2br — Inserts HTML line breaks before all newlines in a string
Example using nl2br()
<?php
echo nl2br("foo isn't\n bar");
?>
The above example will output:
foo isn't<br />
bar
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / madhu
nl2br is used for new for every entry
example :
<?php
mysql_connect("localhost","root","");
mysql_select_db("databasename");
$query=mysql_query("select * from table");
while($row=mysql_fetch_assoc($query)){
$var = $row['data'];
echo nl2br($var);
?>
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the difference between "echo" and "print" in php?
How many types of functions are there in php?
What is the best way to avoid email sent through php getting into the spam folder?
What is the use of stripslashes in php?
Tools used for drawing er diagrams?
Echo is used to Display message on screen. Which is used with echo to not output the trailing newline?
What are the popular frameworks in php?
What are the differences between mysqli_connect and mysqli_pconnect?
What is inheritance in php with example?
What is $_ request in php?
Is php easier than node?
What does sign mean php?