How to Print Alphabets.
You can print a range of Alphabets e.g. from A to Z or A to ZZ like A, B, C … AA, AB, AZ… ZY, ZZ and more
$length=”3″;
for ($alpha=’A’; strlen($alpha)<=$length; $alpha++)
{print “$alpha<br>”;
}
How to Print Alphabets.
You can print a range of Alphabets e.g. from A to Z or A to ZZ like A, B, C … AA, AB, AZ… ZY, ZZ and more
$length=”3″;
for ($alpha=’A’; strlen($alpha)<=$length; $alpha++)
{print “$alpha<br>”;
}