Código PHP:
<?php
session_start();
include("../reg/config.php");
// armamos la consulta
$sqlQueryNot = mysql_query("SELECT not_ID, titulo, texto, email, f_alta, imagen FROM noticias ORDER BY not_ID DESC", $db_link)
or die(mysql_error());
// mostramos las noticias,
// otra vez usando un bucle while
while($rowNot = mysql_fetch_array($sqlQueryNot)){
echo stripslashes($rowNot['titulo'])."<br/><br/>";
echo "Noticia enviada por: ".$rowNot['email']." Fecha: ".$rowNot['f_alta']."<br/><br/>";
echo nl2br(stripslashes($rowNot['texto']))." <a href=\"mas.php?not_id=".$rowNot['not_ID']."\" target=\"_blank\">Más...</a><br/><br/>";
echo "<img src=\"imagenes/".$rowNot['imagen']."\" width=\"120\" height=\"90\" alt=\"Descripcion\" /><br/>";
}
?>