Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/01/2011, 08:53
pepeluis1
 
Fecha de Ingreso: abril-2010
Ubicación: Colombia
Mensajes: 229
Antigüedad: 14 años, 7 meses
Puntos: 2
Respuesta: como subir una imagen al hosting por medio de la una pagina

Prueba esto

archivo Index.php

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Documento sin t&iacute;tulo</title>
  5. <style type="text/css">
  6. <!--
  7. #apDiv1 {
  8.     position:absolute;
  9.     width:332px;
  10.     height:35px;
  11.     z-index:1;
  12. }
  13. -->
  14. </head>
  15.  
  16. <div id="apDiv1">
  17.   <form action="respuesta.php" method="post" enctype="multipart/form-data" name="form1" id="form1">
  18.     <table width="100%" border="1">
  19.       <tr>
  20.         <td width="36%">Subir archivo:</td>
  21.         <td width="64%"><input type="file" name="archivo" id="archivo" /></td>
  22.       </tr>
  23.       <tr>
  24.         <td>&nbsp;</td>
  25.         <td><input type="submit" name="button" id="button" value="Enviar" /></td>
  26.       </tr>
  27.     </table>
  28.   </form>
  29. </div>
  30. </body>
  31. </html>

respuesta.php
Código PHP:
Ver original
  1. <?php
  2.  
  3.  $ruta =  "archivos/";
  4.         if (is_uploaded_file($HTTP_POST_FILES['archivo']['tmp_name'])) {
  5.          copy($HTTP_POST_FILES['archivo']['tmp_name'], $ruta.$HTTP_POST_FILES['archivo']['name']);
  6.             }
  7.            
  8.     echo "<script>
  9.     alert('El archivo a sido guardado con exito');
  10.     location.href ='index.php';
  11.     </script>";    
  12. ?>

por ultimo creas una carpeta llamada archivos o el nombre que quieras....