PHP: mit if-Bedingung neue Seite öffnen
Hi
habe bis jetzt:
if($_POST["passwort"]=="XYXYXY")
{
include 'index.php';
}
else
{
echo '
<form action="" method="post">
<input type="Password" name="passwort">
</form> ';
}
nun möchte ich aber nicht include sondern, dass es die den link öffnet.
Vielen Dank für Ratschläge!