Ver Mensaje Individual
  #14 (permalink)  
Antiguo 04/06/2010, 07:21
xrizaly
 
Fecha de Ingreso: abril-2010
Mensajes: 69
Antigüedad: 14 años
Puntos: 0
Respuesta: funcion md5()

Cita:
Iniciado por Sommy Ver Mensaje
1)el campo pass esta dentro del tag form?
2)no tenes otro input llamado form mas adelante? Alguno tipo hidden que quede vacio?
3)Estas enviando los datos con metodo POST o GET?

Tenes el codigo del formulario? El problema parece venir de HTML
este es el codigo del formulario!!!!


Código HTML:
Ver original
  1. <span class="botones"></span><span class="imputbox"></span>
  2. <br>
  3. <br><br>
  4. <table width="250" border="1" cellspacing="0" cellpadding="0" align="center" bordercolor="#0099FF">
  5.   <tr>
  6.     <td>
  7.       <table width=100% border=0 align="center" cellpadding="0" cellspacing="0" bordercolor="#009999" bgcolor="#FFFFFF">
  8.         <form action="<?php echo $loginFormAction; ?>" method="POST" >
  9.           <tr bgcolor="#0099FF">
  10.             <td height="45" bgcolor="#052F56">
  11.               <div align="center"><font face="Arial" color="#FFFFFF" size=2><b>Identificaci&oacute;n
  12.                 Usuarios<br>
  13.               </b></font></div>            </td>
  14.           </tr>
  15.           <tr>
  16.             <td>
  17.               <div align="center">
  18.                 <table width="100%" border="0" cellspacing="0" cellpadding="5">
  19.                   <tr valign="middle">
  20.                     <td colspan="2" height="30">
  21.                       <div align="center">                    </div>                    </td>
  22.                   </tr>
  23.                   <tr>
  24.                     <td width="39%">
  25.                       <div align="right"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><span class="Estilo3">Usuario</span>                        : </font></div>                    </td>
  26.                     <td width="61%">
  27.                       <div align="left">
  28.             <input name="user" type="text" class="imputbox" size="15">
  29.                       </div>                    </td>
  30.                   </tr>
  31.                   <tr>
  32.                     <td width="39%"> <div align="right"><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><span class="Estilo3">Password</span>                        : </font></div></td>
  33.                     <td width="61%">
  34.                       <div align="left">
  35.                         <input name="pass" type="password" class="imputbox" size="15">
  36.                       </div>                    </td>
  37.                   </tr>
  38.                 </table>
  39.               </div>            </td>
  40.           </tr>
  41.           <tr valign="middle">
  42.             <td height="50">
  43.               <div align="center"><font face="Arial" color=black size=2>
  44.                 <input name=submit type=submit value="  Entrar  " class="botones" >
  45.                 </font></div>            </td>
  46.           </tr>
  47.         </form>
  48.       </table>
  49.     </td>
  50.   </tr>
  51. <table width="385" border="0" align="center" cellpadding="0" cellspacing="0">
  52.   <tr>
  53.     <td width="385" nowrap class="Estilo4" scope="row"><div align="center"><span class="Estilo4"><?php echo $_GET['error']; ?></span></div></td>
  54.   </tr>
  55.   <tr><td><div></div></td></tr>
  56.   <tr><td><div></div></td></tr>
  57.   <tr><td><div align="center" class="Estilo5"><a href="formato/Ficha_Validacion_Datos.pdf" target="_blank" class="Estilo4">Manual de Uso Ficha Validaci&oacute;n de Datos</a></div>
  58.   </td>
  59.   </tr>
  60. <p align="center">&nbsp;</p>
  61. </body>
  62. </html>