Código PHP:
<?php
include("libreria/server.php");
$conexA= mysql_connect("$host","$user","$pass")
or die("No se pudo realizar la conexion");
$conexB= mysql_select_db("$db",$conexA)
or die("ERROR con la base de datos");
$cunsulta=mysql_query("SELECT * FROM noticias ORDER BY fecha_publicacion DESC ");
?>
Código PHP:
<?php
while($fila=mysql_fetch_object($cunsulta)){
?>
<li>
<a href="nota_unica.php?mensaje=<?php echo $fila->Id_noti?>">
<span><?php echo $fila->Titulo; ?></span>
<a href="nota_unica.php?mensaje=<?php echo $fila->Id_noti?>"><img class="thumb" src="<?php echo $fila->Imagen_p;?>" alt="<?php echo $fila->Titulo;?>"></a>
</a>
</li>
gracias de antemano por la ayuda