Ist sowas sicher?
Also es muss nicht gleich 100% sicher sein aber so das niemand schnell kommt und dann hat er das Passwort.
[php:1:9b30ad2aa3]<html>
<head>
<title>PW</title>
</head>
<BODY bgcolor="#cccccc" text="#000000">
<?php
// Paßwort ändern
$enter = "Hallo";
if ($eingabe == "enter"){
if ($pw == $enter){
// Aktionen bei richtigen Paßwort
echo "Paßwort akzeptiert!";
}
if ($pw != $enter){
// Aktionen bei falschen Paßwort
echo "Sie haben sich vertippt oder das Paßwort wurde nicht akzeptiert!
}
}
else
{
?>
<form action="code.php" method="post">
<table>
<tr>
<td><input type="Password" name="pw" size="20" maxlength="20"></td>
<td><input type="Submit" name="eingabe" value="enter"></td>
</tr>
</table>
</form>
<?
}
?>
</body>
</html>[/php:1:9b30ad2aa3]