<?php
for ($i=65; $i< =90; $i++){
$x = chr($i)."<br>";
print $x;
}
?>A'dan Z'ye tüm harfleri ekrana basabilirsiniz
kod blogunda syntax hatası verdi
doğrusu
<?php
for ($i=65; $i<=90; $i++){
$x = chr($i)."<br>";
print $x;
}
?>ayrıca ord() funcitonu ile ascii degerleri alabilirsiniz
<?php
echo ord('a');
//97
?>