mirror of
https://github.com/php/web-php.git
synced 2026-03-29 18:52:08 +02:00
14 lines
366 B
PHP
Executable File
14 lines
366 B
PHP
Executable File
<?php require "header.inc"?>
|
|
<h1>Looping Control Structures</h1>
|
|
<?example('<?for ($loop = 0; $loop < 10; $loop++) {
|
|
echo "<P>$loop.";
|
|
}?>');?>
|
|
<?example('<?$loop = 0;
|
|
while ($loop < 10) {
|
|
echo "<P>$loop.";'.' $loop++;
|
|
}?>');?>
|
|
<?example('<?do {
|
|
echo "<P>$loop."; $loop++;
|
|
} while ($i < 10);?>');?>
|
|
<?php require "footer.inc"?>
|