This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql03d/if_else.php
T

19 lines
189 B
PHP

<?php
// if … else
$regen = true;
if ($regen == false) {
echo "<h3>Regenschirm schließen!</h3>";
}
else {
echo "<h3>Es regnet, Regenschirm öffnen!</h3>";
}
?>