Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/01/2009, 14:18
tirengarfio
 
Fecha de Ingreso: septiembre-2008
Mensajes: 146
Antigüedad: 16 años, 6 meses
Puntos: 1
Respuesta: Problemas al intetar subir una imagen al servidor

Si. Aqui esta el codigo por si las moscas...


Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>formulario_reg</title>
  <style type="text/css">
#registros {
float: left;
text-align: right;
margin-right: 0px;
font-size: 0.87em;
padding-top: 0px;
height: 181px;
line-height: 1.85em;
padding-right: 7px;
width: 147px;
}
#casillas {
line-height: 1.6em;
}
#registros_y_casillas {
margin-top: 200px;
margin-left: 300px;
width: 377px;
}
  </style>
</head>
<body>
<div id="registros_y_casillas">
<div id="registros">Nombre<br>
Apellidos<br>
Email<br>
Telefono<br>
Domicilio<br>
Fecha de nacimiento <br>
Avatar</div>
<div id="casillas">
<form enctype="multipart/form-data" method="post"
 action="http://localhost/red_social/subida_datos_registro.php"
 name="formulario"><input name="nombre"><br>
  <input name="apellidos"><br>
  <input name="email"><br>
  <input name="telefono"><br>
  <input name="domicilio"><br>
  <input name="fecha_nac"><br>
  <input name="avatar" type="file"><br>
  <button value="subir" name="subir"></button><br>
</form>
</div>
</div>
</body>
</html>