Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/08/2010, 13:05
Avatar de xamilo
xamilo
 
Fecha de Ingreso: febrero-2010
Mensajes: 120
Antigüedad: 14 años, 9 meses
Puntos: 1
Respuesta: thumb a imagen

bueno aca guardo las imagenes y las muestros
Código PHP:
Ver original
  1. if($_REQUEST['enviado'] == 1)
  2. {
  3.     $ruta = "../imagenes/" . $_FILES['archivo']['name'];
  4.     copy($_FILES['archivo']['tmp_name'], $ruta);
  5.     echo "<script>alert('El archivo subio correctamente');</script>";
  6. }
  7.  
  8.  
  9.  
  10.  
  11.                 <td align="center" class="titulosmenuprincipales">Crear Informe</td>
  12.                 </tr>
  13.             </table>
  14.     <form name="formulario" enctype="multipart/form-data" method="POST" action="" onsubmit="return validar(this)">
  15.     <table>
  16.         <tr><td><strong>Subir de imagenes</strong></td></tr>
  17.         <tr>
  18.             <td><input type="file" name="archivo" id="archivo"><input type="hidden" name="enviado" value="1"></td>
  19.         </tr>
  20.         <tr><td colspan="2" align="right"><input type="submit" value="Enviar"></td></tr>   
  21.     </table>
  22.     </form>
  23.     <table>
  24.        <form name="imagenes">
  25.         <tr><td align="left"><strong>Imagenes</strong></td></tr>
  26.         <tr><td>
  27.         <?
  28.             $dir=opendir("../imagenes/");
  29.             while ($file=readdir($dir))
  30.             {
  31.                 $auxiliar = explode(".", $file);
  32.                 if($auxiliar[1] == "jpg")
  33.                  {
  34.                 echo "<img src='../imagenes/$file'>&nbsp;"; ?>
  35.                 <textarea name="obs" cols="50" rows="4" class="letra"></textarea>
  36.               <?  }
  37.         } ?>
  38.        
  39.         </td></tr>
  40.     </table>  
  41.     <table>
  42.     <tr><td colspan="2" align="right"><input type="submit" value="Enviar"></td></tr>
  43.     </table>
  44.     </form>

ahora como a esto le implemento un resize para darle otro porte ?