How do you create a new line in a textarea when inserting the text via php?
I thought it was \\n but that gets literally printed in the textarea.
\\n
$row['content']=stripslashes($row['content']); $row['content']=str_replace('',"newline",$row['content']); $row['content']=htmlentities($row['content']); $row['content']=str_replace('newline',"",$row['content']);