Here is a php code to turn a number to it's string value. The number system can befrom 2 to 52, however the symbols used consist of letters only (English lowercase and uppercase letters, and no numbers). Here is the code snippet:
<?php
function num2str($num, $dim, $size) {
if ($...