Espero me puedan ayudar!! gracias y saludos desde Campana, provincia de Bs As.
![Adios](http://static.forosdelweb.com/fdwtheme/images/smilies/adios.gif)
Necesitas tener un admin.html o loquesea.html.
Código:
<html>
<head>
<title>Introdusca su clave</title>
</head>
<body>
<form action="script.php" method="post">
Clave:<input type=password name=pwd>
<br>
<input type=submit value=Enviar>
</form>
</body>
</html>
Y luego en script.php pones esto:
Código PHP:
<?
If ($pwd="Clave1") {
include ("cliente1.html");
}else{
echo "Clave incorrecta";
};
if ($pwd=="clave2") {
include ("cliente2.html");
}else{
echo "Clave incorrecta";
};
if ($pwd=="clave3") {
include ("cliente3.html");
}else{
echo "Clave incorrecta";
};
?>