mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 15:13:42 +01:00
9 lines
116 B
PHP
9 lines
116 B
PHP
<?php
|
|
|
|
$a = 1;
|
|
$b = 1;
|
|
|
|
if ($a == $b) {
|
|
echo 'a und b sind gleich.';
|
|
echo ' Und was sonst noch zu sagen wäre.';
|
|
} |