<?
$conexion = odbc_connect("noticiasfaro","","","");
$rs= odbc_exec("select titulo, lugar, descripcioncorta, contenido, Id, tipo from noticias Where tipo='publicado' Orden By Id Limit 2");
while($res = odbc_fetch_array($rs))
echo "
<table width=\"75%\">
<tr>
<td><table width=\"281\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr>
<td width=\"100%\" bgcolor=\"#666699\" valign=\"top\"> <font color=\"#FFFFFF\" size=\"1\" face=\"Verdana, arial, helvetica, sans-serif\">$res[titulo]</font></td>
</tr>
</table></td>
</tr>
<tr>
<td><font face=\"Verdana\" size=\"1\" color=\"#FFFFFF\">$res[contenido]</font><BR>
<BR> <div align=\"right\"><a href=\"informate.php?id=$res[Id]\" class=\"h2\">Más
info...</a></div></td>
</tr>
</table>";
odbc_close_all();
?>