Ver Mensaje Individual
  #6 (permalink)  
Antiguo 24/03/2011, 17:52
fuhrer_set
 
Fecha de Ingreso: febrero-2011
Mensajes: 4
Antigüedad: 13 años, 10 meses
Puntos: 0
Respuesta: Como vincular una imagen a otra página

Ok, soy demasiado principiante para esto, no se si estoy haciendolo bien.

Aqui esta en mi index.php, la imagen pequeña y vinculada con la pagina detalles.php, donde tiene que aparecer mas grande.

Código PHP:
Ver original
  1. <tr>
  2.           <th scope="col"><?php do { ?>
  3.               <p><a href="detalle.php"><img src="fotos/peques/<?php echo $row_carrito['nombre'];?>" width="120" height="72" /></a></p>
  4.               <p><?php echo $row_carrito['lugar']; ?></p>
  5.               <p><?php echo $row_carrito['precio']; ?></p>
  6.               <?php } while ($row_carrito = mysql_fetch_assoc($carrito)); ?></th>
  7.         </tr>
  8.         <tr>

Mi imagen esta dentro de una tabla, esta es la pagina detalles.php, aqui debe de aparecer la misma imagen de tamaño grande.

Código PHP:
Ver original
  1. <center><table width="457" height="539" border="1">
  2.         <tr>
  3.           <th height="533" scope="col"><table width="419" height="136" border="1">
  4.             <tr>
  5.               <th scope="col"><?php echo $row_Detalle['nombre']; ?></th>
  6.             </tr>
  7.             <tr>
  8.               <th scope="row"><?php echo $row_Detalle['descripcion']; ?></th>
  9.             </tr>
  10.             <tr>
  11.             If (&GET_['nombre'])
  12.             {
  13.               <th scope="row"><img src="fotos/grandes/<?php echo $row_Detalle['nombre']; ?>" width="698" height="420" /></th>
  14.               }
  15.               else{
  16.               }
  17.             </tr>
  18.           </table></th>
  19.           </tr>
  20.       </table>
  21.       </center>