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/einfache_verzweigung.php
T

12 lines
126 B
PHP

<?php
$preis = 5;
if ($preis < 2.95) {
//Anweisungsblock in geschweiften Klammern
echo "<h3>kaufen</h3>";
}
?>