Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/01/2011, 17:51
franjgg
 
Fecha de Ingreso: marzo-2007
Mensajes: 751
Antigüedad: 17 años, 1 mes
Puntos: 4
Respuesta: Por que rrellena los campos solo

Hola amigo, el codigo es el siguiente,

Acabo de percatarme de que solo ocurre en mozilla en ie8 no pasa.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<title>agregar usuario</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<?
session_start();
include_once('cerrar_session.php');
include_once('conexion.php');
?>
<form action="guardar_usuario.php" method="POST" enctype="multipart/form-data">

<table border="1" align="center" width="350px">
<tr>
<td>Nombre</td>
</tr>
<tr>
<td><input type="text" name="Nombre" style="width:340px;"/></td>
</tr>

<tr>
<td>Apellidos</td>
</tr>
<tr>
<td><input type="text" name="Apellidos" style="width:340px;" value=""/></td>
</tr>

<tr>
<td>Contraseña</td>
</tr>
<tr>
<td><input type="password" name="Pass" style="width:340px;" value=""/></td>
</tr>

<tr>
<td>Avatar</td>
</tr>
<tr>
<td><input type="file" id="Imagen" name="Imagen" size="30"/></td>
</tr>

<tr>
<td>Direccion</td>
</tr>
<tr>
<td><textarea name="Direccion" cols="40 "></textarea></td>
</tr>

<tr>
<td>Telefono</td>
</tr>
<tr>
<td><input type="text" name="Telefono" style="width:340px;"/></td>
</tr>

<tr>
<td>Email</td>
</tr>
<tr>
<td><input type="text" name="Email" style="width:340px;"/></td>
</tr>

<tr>
<td><input type="submit" value="Añadir" /></td>

</tr>

</table>
</form>
</body>
</html>