You entered data into a text area field that was entered into a mysql row. Then you tried to print it out.
Try this:
$content = str_replace("\n","<br>",$row["row_name"]);
echo $content;
-Kyle
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

