Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » PHP » Problem mit == True

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
15.11.2003, 15:10 Uhr
Pablo
Supertux
(Operator)


Ich hab ein kleines Problemchen.

ich habe ein Formulat (submit Button mit name="submitbutton")
und hab folgende Funktion deklariert.

PHP 4:

            function get_Arrayitem($array, $key) {
        if(array_key_exists($key, $array))
            return $array[$key];
        return -1;
    }
$submitted = get_Arrayitem($_POST, 'submitbutton') == 'Vote' ? TRUE : FALSE;



Das Problem ist, wenn ich an einer anderen Stelle $submitted == TRUE überprüfe ob man auf den Submit Knopf gedrückt hat, funktioniert nur einmal. wenn ich nochmal $submitted==TRUE überprüfe, dann funktioniert es ncht mehr. Wieso nicht?
Die Überprüfgung erfolgt immer an verschiedene <?php > tags.
--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
15.11.2003, 15:13 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


ich würde einfach


PHP 4:
$submitted = ( ($_POST['submitbutton'] == 'Vote') ? 1 : 0);
if($submitted == 1)
{
  echo "Joa";
}
else
{
  echo "Noa"; // :)
}



schreiben.
--
class God : public ChuckNorris { };

Dieser Post wurde am 15.11.2003 um 15:14 Uhr von FloSoft editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
15.11.2003, 15:18 Uhr
Pablo
Supertux
(Operator)


Also, lieber auf TREU und FALSE verzichten?
--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
15.11.2003, 16:54 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


jop
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ PHP ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: