aufgabe 1 prog

This commit is contained in:
danielvici123
2025-02-28 07:34:06 +01:00
parent 9fe7475075
commit 463fd164ed
2 changed files with 19 additions and 1 deletions

View File

@@ -2,5 +2,6 @@
"livePreview.defaultPreviewPath": "/komp/24-10-11/index.html", "livePreview.defaultPreviewPath": "/komp/24-10-11/index.html",
"cSpell.enabledFileTypes": { "cSpell.enabledFileTypes": {
"php": false "php": false
} },
"workbench.editor.untitled.language": "fasle",
} }

View File

@@ -0,0 +1,17 @@
<h1>Moin</h1>
<?php
$i = 0;
while ($i < 10) {
if ($i > 5) {
echo $i . "<br>";
} else {
echo $i . "<br>";
}
$i = $i + 1;
}
echo $i;
?>