I have textarea comming from mysql.
In the backend the user tyes a letter type format in a textarea
They ise Enter to make new rows etc
__________________________________________________
Dear john
Welocome to our website hope you find it usefull
Thank you
The Team
___________________________________________________
When I pull the data from my sql to the backend, it does not leave the spaces as per input, it does this
Dear John Welcome to our website hope you find it usefull thank you the team
Ho can i set the text to show as html text and not text
<?php
//EXTRACT DATA
$extract = mysql_query("select * from tbl_about");
while ($row = mysql_fetch_assoc($extract))
{
$id = $row['id'];
$about = $row['fld_about'];
echo " <thead> $about </thead>";
echo "<br>";
}
?>