Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/04/2008, 09:10
Avatar de farra
farra
 
Fecha de Ingreso: marzo-2008
Ubicación: Aqui estoy
Mensajes: 574
Antigüedad: 16 años, 2 meses
Puntos: 20
De acuerdo Re: Problemas Al Validad Contraseña

encontre 3 errores de sintaxis en 7 lugares...

aca esta el codigo correcto:

Código PHP:
<html>
<head>
<title>VALIDA3</title>
</head>
<body>
<?PHP

$CUENTA
=$_POST['CUENTA'];
$PASS=$_POST['PASS'];
if (  ( (
$CUENTA=="pancho") && ($PASS=="lopez") ) || ( ($CUENTA=="otro") && ($PASS=="otro") )  )
{
}
else
{
echo 
"estas muy godo";
}

?>
</body>
</html>