Hi,
How do I ensure a break is added after each result is displayed in textarea?
At moment <br /> is displayed as text.
while($row_cmt = mssql_fetch_array($result_cmt))
{
$comment_log = $row_cmt['comments'];
$comment_date = $row_cmt['comments_date'];
echo $comment_log.' '.$comment_date.'<br />';
}