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

14 lines
162 B
PHP

<?php
$zaehler = 2;
const ENDE = 1;
do {
echo "<p>Zähler hat den Wert: " .$zaehler ."</p>";
$zaehler++;
} while ($zaehler <= ENDE);
?>