Hise una base de datos de noticias y puedo verlas individuales o listarlas pero lo que no he podido Hacer es el poner el resumen de la noticia que sigue a la que se esta leyendo , yo mense que bastaria ponerle :
Código PHP:
   <?
echo $ID;
$ID2=$ID+1;
echo '<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">';
mysql_connect("$hostname_conexion","$username_conexion","$password_conexion"); 
$result=mysql_db_query("$database_conexion", "select * from noticias Where ID=$ID2");
while ($row=mysql_fetch_array($result))
{
echo '  <tr> ';
echo '    <td><img src="imagenes_web/entre_barras.jpg" width="5" height="5"> </td>';
echo '  </tr>';
echo '  <tr> ';
echo '    <td class="tablapunteada"><img src="imagenes_web/fl_l.gif" width="11" height="11"> ';
echo '      <span class="tituloNoticias">'.$row["titulo"].'</span><br>';
echo '      <span class="textoNoticias">'.$row["resumen"].'</span><br>';
echo '      <span class="pieNoticias">'.$row["autor"].' - '.$row["fecha"].' </span></td>';
echo '  </tr>';
echo '  <tr> ';
echo '    <td><div align="right"><a href="noticias_lectura.php?ID='.$row["ID"].'"><img src="imagenes_web/leer_noticia.jpg" width="121" height="16" border="0"></a></div></td>';
echo '  </tr>';
 
}
mysql_free_result($result);
echo '</table>';
?>    como se puede hacer
 
 Saludos desde Chile
 
 

 Noticia Siguente ?
 Noticia Siguente ?  
 
