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

13 lines
212 B
PHP

<?php
$zaehler = 1;
const ENDE = 25;
while ($zaehler <= ENDE) {
echo "<p>Schleifendurchlauf nr. $zaehler. " ."es folgt noch " .(ENDE - $zaehler) ." Durchläufe.</p>";
$zaehler++;
}
?>