Bueno, la tabla esta mal estructurada
Código PHP:
Ver originalecho ('<table cellspacing="5" cellpadding="5">');
if ($nfilas > 0)
{
for ($i=0; $i<$nfilas; $i++)
{
echo ("<tr><td>");
echo ("<h2>" . $contenido["titulo"] . "</h2>");
echo ("<br />");
echo ($contenido["fecha"]);
echo ("<br /><br />");
echo ($contenido["texto"]);
echo ("</td></tr>");
}
}