Hi all,
I just incorporated this script into my site to show members rankings as images, It maybe of some use to some other people so hope yous find it useful 🙂
<?php
// Replace $variable with your variable
$variable = "12745";
// Gets the variable number length
$variablelength=strlen($variable);
// Echos the number as a GIF
for ($i=0; $i<$variablelength; $i++){
$c=substr($variable,$i,1);
echo "<img src=../imgs/".$c.".gif> ";
}
?>