me da un error del tipo al cerrar la tabla </table>: Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING
Código PHP:
<table style="BORDER-TOP:rgb(49,49,156) 1px solid; BORDER-LEFT:rgb(49,49,156) 1px solid; BORDER-RIGHT:rgb(49,49,156) 1px solid; BORDER-BOTTOM: rgb(49,49,156) 1px solid" colspan="2" bgcolor="#EFECFD" width="100%" border="0">
<tr>
<td>
<p style="text-align:justify">
<?
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_noticias/$nota[imagen]");
echo($nota[titulo].",".$nota[intro].",".$nota[texto]");
}
?>
</p>
</td>
</tr>
</table>