Hi is there a PHP function to build a string of alpha characters from numerals?
e.g
1 = a
2 = b
3 = c
etc?
You can use the chr() function combined with an offset for this e.g.:
$offset = 96;
echo chr(1 + $offset);
echo chr(2 + $offset);
echo chr(3 + $offset);
Depending on what you want in the end, strtr [docs] might be sufficient:
$str = strtr('1234567890', 'abcdefghij', $str);
BForZ