...exactly the same as it was entered. I mean there is no line breaks (new lines). Everything comes in thes ame row when I print them.
The script that is used to display text area:
....<textarea name="note" rows="10" cols="46"></textarea>....
The script that is used to entered data in the database that was entered in the textarea
$note=$_POST['note'];
htmlentities($note);
The script that is used to display the data
echo "".$array['note']."</td>";
Any advices?