mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2026-02-06 07:05:14 +01:00
Initiale Version
This commit is contained in:
11
Kapitel_2/Lektion_7/2_if_else.php
Normal file
11
Kapitel_2/Lektion_7/2_if_else.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?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';
|
||||
}
|
||||
Reference in New Issue
Block a user