OT x Black:
prova a fare così...trovi un editor ASCII rinomini il file come .frm e lo apri con l'editor....
Per r_rei prova così:
Codice PHP:
<html>
<head>
<title>Pass</title>
</head>
<script language="JavaScript">
<!--
//ora devi chiamare la pagina ad esempio utente.htm
//e la metti dentro la cartella password
//
//se l'utente inserisce come userid: "utente" e come password: "password" andrà alla pagina
//giusta... altrimenti niente.
function areapvt() {
pwd=document.pvt.pwd.value;
userid=document.pvt.userid.value;
document.pvt.action=pwd+"/"+userid+".htm";
return true;
}
//-->
</script>
<body>
<form name="pvt" onsubmit="return areapvt()" method=post>
<input type=text name="userid">
<input type=password name=pwd>
<input type=submit value="login">
</form>
</body>
</html>