Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
php
/
do-while.php
blob: b824bfb18d760a32bf35100ec75411a2032eccf1 [
file
]
<?
php
$i
=
3
;
do
{
echo $i
;
$i
--;
}
while
(
$i
>
0
);
?>