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