Tema: Error ROW
Ver Mensaje Individual
  #10 (permalink)  
Antiguo 11/10/2012, 10:26
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Error ROW

Código PHP:
Ver original
  1. // mal
  2. <a href="portfolio_single.php?id=<?php echo $row [detalle_id]; ?>">
  3. <img src="images/<?php echo $row [image1]; ?>" alt="" width="600" height="300" /></li></a>
  4.  
  5. // bien
  6. <a href="portfolio_single.php?id=<?php echo $row['detalle_id']; ?>">
  7. <img src="images/<?php echo $row['image1']; ?>" alt="" width="600" height="300" /></li>