I want to make someting like-
A = 1
B = 2
...
...
Z = 26
AA = 27
AB = 28
AC = 29
I used ASCII code converter and range function to do that. But didn't worked. In this case.
<?php
$range = range('AA','ZZ');
print_r($range);
?>
// Returns an array A to Z not AA to ZZ
So, Is there any possible way to do that?