Source
<?php
echo
"Avec la méthode while <br>"
;
$i
=
65
;
while
(
$i
<=
90
)
{
echo
chr
(
$i
)
.
" "
;
$i
++;
}
?>