Prueba con esto:
Código PHP:
// Enviamos un mensaje
// indicando la cantidad de resultados ($totalRows)
// para la frase busada ($frase)
if(!empty($totalRows)){
echo stripslashes('<p>Se encontraron <strong>'.$totalRows.'</strong> resultados para <strong>'.$frase.'</strong></p>');
// mostramos los resultados
while($row = mysql_fetch_array($sqlBuscar)){
echo '<strong><a href='.$row['noticiaurl'].'>'.$row['noticiaTitulo'].'</a></strong>';
echo '<p>'.substr(strip_tags($row['noticiaNoticia']), 0, 255).'...</p>';
}
Suerte.