Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/12/2007, 21:34
Avatar de dopon
dopon
 
Fecha de Ingreso: julio-2005
Ubicación: Cucuta / Colombia
Mensajes: 493
Antigüedad: 18 años, 9 meses
Puntos: 1
Re: ¿Identificacion de Contraseña?

el problema es la gran cantidad de errores de el script verifica :

corregido y testeado en un servidor web

Código PHP:
<html>
<head>
   <title>Ejemplo de PHP</title>
<STYLE type="text/css">
BODY {font-family:Verdana,sans-serif;font-size:x-small;
margin-left:0.25in; margin-right:0.25in;color:gray}
H1 {font-family:Verdana,sans-serif; font-size:14pt;color:green}
</style>
</head>
<body>
<?php

if ($_GET['Contraseña']=="123456")
{
    include(
"pagina.html");
}
else
{
    echo 
"Contraseña Incorrecta Intentelo de Nuevo";
}
?>
<br>
</body>
</html>