mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 07:03:41 +01:00
11 lines
159 B
PHP
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';
|
|
} |