Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
if(($a == 0) && ($b == 1)){
echo "stimmt";
}
if(($a == 0) AND ($b == 1)){
echo "stimmt auch";
}
?>
Ja, eine Dokumentation SELFHTML: JavaScript / Sprachelemente / OperatorenHallo,
Code:if ((a==0) and (b==1))
kann mir jemand bitte sagen wie eine Verküpft IF-Abfrage aussehen muss?
oderPHP:if(($a == 0) && ($b == 1)){ echo "stimmt"; }
oder hab ich die frage falsch verstanden?PHP:if(($a == 0) AND ($b == 1)){ echo "stimmt auch"; } ?>