Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/08/2003, 12:42
Avatar de pereztroff
pereztroff
 
Fecha de Ingreso: junio-2002
Ubicación: En la Internet.
Mensajes: 4.068
Antigüedad: 21 años, 10 meses
Puntos: 5
no veo el error, ayuda!!

por favor me dicen que falla aqui?? gracias.
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>