ah, wieso geht es nicht

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • ah, wieso geht es nicht

    index.php4
    ---------------
    <?php
    if ($variable == "ja")
    {
    SetCookie("novisit","ja",Time()+3600*24*365);
    echo "<script language=\"JavaScript\">

    location.href=\"news.shtm\";
    </script>";
    }
    ?>


    <?php
    if ($variable != "ja")
    {

    echo "<script language=\"JavaScript\">

    location.href=\"news.shtm\";
    </script>";
    }
    ?>


    <?php
    if ($novisit == "ja")
    {
    echo "<script language=\"JavaScript\">

    location.href=\"news.shtm\";
    </script>
    ";
    }
    ?>


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

    <body bgcolor="#FFFFFF" text="#000000">

    <form method="post" action="index.php4">
    <input type="checkbox" name="variable" value="ja">
    <input type="submit" name="Abschicken" value="Abschicken">

    </form></body>
    </html>
    --------------------------------------
    Hab dieses tolle Script geschriebn, hab nur ein problem, php interpertiert das nicht vorhandensein der $variable variable als $variable != "ja" und gibt damit den javascrip befehl aus, dieser soll allerdings erst ausgegebe werden, wenn das formular abgeschickt wurde, also im prinzip erst wenn die $variable variable wirklich != "ja" ist... Bitte um eine Antwort!!

  • #2
    Code:
    <?php 
    if (isset($variable)) {
    	if ($variable != "ja") { 
    		echo "<script language=\"JavaScript\"> 
    		location.href=\"news.shtm\"; 
    		</script>"; 
    	}
    } 
    ?>

    Kommentar

    Lädt...
    X