tengo esto y las imagenes no salen:
Código PHP:
<?
include('../inc/conexion.php');
$select_notas = mysql_query("SELECT * FROM rm_notas ORDER BY id DESC LIMIT 0, 5");
for ($x = 1; $x <= 5; $x++) {
$nota = mysql_fetch_array($select_notas);
echo"<img src=\"../img_noticias/".$nota[imagen]."\"><br>";
echo($nota[titulo].",".$nota[intro].",".$nota[texto]);
echo "<hr>";
}
?>