Pwschutz
Mit diesem Script habt Ihr einen simplen aber sinnvollen
Passwortschutz
|
Script: |
<?php
$pw="passwort";
if($_POST['inputpw']!=$pw){
echo "<form
action=\"?\" method=\"post\">";
echo "<input
type=\"password\" name=\"inputpw\"> ";
echo "<input
type=\"submit\" value=\"login\"></form>";
}
else { ?>
*** passwortgeschuetzte Seite ***
<?php
}
?>
|
|