suche hilfe bei einer kleinen änderung

  • was muss ich ändern in dem folgenden php script das nach erfolgreicher eingabe des passwortes eine html seite aufgerufen wird?

    <?php

    // Change password according to your need
    $PASSWORD = "1234";

    if (isset($_POST['Submit'])) {
    if($_POST['password'] == $PASSWORD )
    {
    session_start();
    $_SESSION['logedin'] = 'passsid';
    }
    }
    if(isset($_SESSION['logedin']) && $_SESSION['logedin'] == 'passsid')
    {
    ?>

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>

    <head>
    <title>einfacher Passwortschutz...</title>
    <style>

    </style>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td align="center" valign="top"><font color="#FFFFFF" size="5" face="Tahoma">

    hier w&auml;re dann die Seite...
    </font></td>
    </tr>
    </table>
    </body>
    </html>

    <?php
    }
    ?>
    <?php
    if(!isset($_SESSION['logedin']) || $_SESSION['logedin'] != 'passsid')
    {
    ?>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <body bgcolor="#FFFFFF">
    </body>
    </style>
    </head>
    <body>
    <form method=post>
    <center>

    </p>
    <table>
    <tr>
    <td><div align="center"><font size="4" face="Tahoma">Passwortschutz!</font>

    <font size="2" face="Tahoma">Bitte Passwort eingeben!</font></div></td>
    </tr>
    <tr>
    <td><div align="center">
    <input type=password name=password>
    </div></td>
    </tr>
    <tr>
    <td><div align="center">
    <input name="Submit" type="submit" class="submit" value="Login">
    </div></td>
    </tr>
    </table>
    </center>
    </form>
    </body>
    </html>
    <?php
    }
    ?>

    gruss

    duane