wiwi agrege lo que me dijiste al codigo:
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>";
echo "<pre>";
var_dump($row );
echo "</pre>";
}
pero me aparece esto:
Escribi bien el codigo??