Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/06/2010, 23:09
alx_salazar
 
Fecha de Ingreso: septiembre-2008
Mensajes: 192
Antigüedad: 15 años, 7 meses
Puntos: 1
Pregunta Ayuda con Iframe y formulario

Hola migos!!!!!!!!!

Tengo un formulario en que le contiene en un IFRAME y al moento de ingresar el usuario no se porque pero se me carga en el mismo IFRAME y nesecito que se actualize como una nueva pagina fuera del iframe no se como hacerlo gracias les pongo el codgo a ver si me ayudan???

Código PHP:
Ver original
  1. <?
  2. ?>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  4. <html>
  5.     <head>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7.         <title></title>
  8.     <style type="text/css">
  9.     .pasword {
  10.     color: #999;
  11. }
  12.     .m {
  13.     color: #00F;
  14. }
  15.     .m {
  16.     color: #000;
  17. }
  18.     </style>
  19.     </head>
  20. <body>
  21.  
  22.       <form action="index_autofacil.php" method="post" >
  23.      
  24.       <center><table width="200" bgcolor="#0000CC"="1">
  25.         <tr>
  26.           <td class="m"><h3>Usuario: </h3></td>
  27.           <td><input type="text" name="usuario" size="20" maxlength="20" /></td>
  28.         </tr>
  29.         <tr>
  30.           <td height="26" class="m"><h3>Password: </h3></td>
  31.           <td><input type="password" name="password" size="20" maxlength="10" /></td>
  32.         </tr>
  33.       </table></center>
  34.       <br />
  35.       <br />
  36.  
  37.       <center><input name="Enviar" type="submit" value="Ingresar" /></center>
  38.  
  39.       </form>
  40.  
  41.      
  42.     </body>
  43. </html>