php7-mysql-data/Kapitel_2/Lektion_7/2_if_else.php
2016-08-21 00:15:10 +02:00

11 lines
159 B
PHP

<?php
$a = 1;
$b = 2;
if ($a == $b) {
echo 'a und b sind gleich';
echo ' Und was sonst noch zu sagen wäre.';
} else {
echo 'a und b sind NICHT gleich';
}