A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 9 Ω


PHP Command Blocks


Beispiel


Basiswissen


Als Beispiel mit Quellcode sind hier zwei if-Blöcke in der Programmiersprache PHP kurz vorgestellt.

Beispiel



if (3 == 2 + 1)
print("Diese Antwort stimmt.
");

if (3 == 2 + 1) {
print("Auch diese Antwort ist:");
print("richtig.
");
}

?>