Mira ahora como quedó añadiendo el "trim".
Pero aun sigo con los espacios y lineas en blanco.
Código PHP:
<?
$connect=mysql_connect("xx","xx","xx");
mysql_select_db("xx",$connect);
$result=mysql_query("select * from noticias order by fecha Desc", $connect);
$totalregistros=mysql_num_rows($result);
while($row=mysql_fetch_array($result)){
echo "<h5>".$row['titulo']." - ".$row['fecha']."</h5><br><h6>".trim($row['noticia'])."</h6>";
}
mysql_free_result($result);
?>
Aguardo otra orientación.
Saludos!