5 lines
72 B
PHP
5 lines
72 B
PHP
<?php $a=1;
|
|
while($a<10):
|
|
echo $a;
|
|
$a++;
|
|
endwhile?>
|