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

13 lines
213 B
PHP

<?php
$i = 42;
echo "Vor dem Problem. Wert von \$i: $i" . "<hr>";
for ($i == 0; $i < 10 ; $i++) {
echo "Hochzählen von \$i: $i" . "<br>";
}
echo "Nach dem Problem. Wert von \$i: $i" . "";
?>