Script wird im Firefox nicht richtig angezeigt

  • hi, Cracks

    habe folgendes scipt auf meiner HP eingebunden, aber die Darstellung im Firefox ist nicht korrekt. Im IE7 hingegen alles TOP.

    Weis jemand woran das liegt ? Die Zeilen in Rot werden als Code im Firefox angezeigt ! Ist aber alles voll funktionsfähig !

    <?
    ################################
    # FPasswort 1.0 by Firas Jradi #
    ################################

    // This script protects a website with a passwort
    // MYSQL is not neccessary

    include("var.php");


    if (!isset($HTTP_POST_VARS['submit'])) {
    ?>
    <font size="+1"><b>RESTRICTED AREA</b></font><p>
    <form action="index.php" method="post">
    Password: <input type="pass" name="password">
    <input type="submit" name="submit" value="Einloggen">
    </form>
    <?
    }
    else {
    if($_POST['password'] == $pass) {
    $time=$limit/1000;
    echo "<b><p>You logged on successfully, you'll be redirected in $time seconds....</b>";
    echo "<script>
    function load() {
    location.href='$url';
    }
    window.setTimeout('load()',$limit);
    </script>";
    }
    else {
    echo "<b>Ungültiges Passwort !!</b><p><a href=\"javascript:history.back()\">Zurück</a>";
    }
    }

    [Blockierte Grafik: http://www.family-project.de/anzeige.jpg]


    im Internet Explorer wird alles korrekt dargestellt.

    http://www.family-project.de/html/solardaten.html

    Wieso ?

    3 Mal editiert, zuletzt von Bad_Cat (18. Dezember 2008 um 15:02)