Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/06/2013, 08:49
Avatar de kimmy
kimmy
 
Fecha de Ingreso: julio-2008
Mensajes: 841
Antigüedad: 16 años, 4 meses
Puntos: 15
Pregunta Gestor de imagenes de galeria

Hola amigos. Estoy haciendo un gestor de imagenes de una galeria pero no se como decirle que al seleccionar modificar o eliminar x foto, almacene el nombre de la foto para pasarlo por get. Este es mi codigo:

Código PHP:
Ver original
  1. <table>
  2.   <tr>
  3.     <th><div align=\"center\"><strong>Foto</strong></div></th>
  4.     <th><div align=\"center\"><strong>Modificar</strong></div></th>
  5.     <th><div align=\"center\"><strong>Eliminar</strong></div></th>
  6.    
  7.   </tr>
  8.    <?php
  9.  $directory="../../images/galeria/thumbnails/".$codigo3;
  10.     $dirint = dir($directory);
  11.     if (file_exists($directory)) {
  12.  
  13.     while (($archivo = $dirint->read()) !== false)
  14.     {
  15.  
  16.         if (eregi("gif", $archivo) || eregi("jpg", $archivo) || eregi("png", $archivo)){
  17.            
  18.             echo '<tr><td><img src="'.$directory."/".$archivo.'">'."</td>
  19.             <td><a href='modif_gal.php?foto=<?php echo $ESTO ES LO QUE NO SE?>'>Modificar</a></td>
  20.             <td><a href='elim_gal.php?foto=<?php echo $ESTO ES LO QUE NO SE?>'>Eliminar</a></td>
  21.  
  22. Cómo puedo hacer esto???
  23.  
  24. Gracias
  25.            
  26.             </tr>";
  27.         }
  28.    
  29.     }
  30.     $dirint->close();
  31.     }else{
  32.     }
  33.    
  34.  ?>
  35.  
  36.   <tr>
  37.   <td colspan="2" align="center"><a href="consultar_fotos.php">Regresar</a></td>
  38.   </tr>
  39. </table>
__________________
Caminando con el corazón partío