I have a counter like deal, that is attempting to take a number like 12345 and turn it into an image with the text 12345 on it
I dont' have the freetype extension installed/enabled so I can't use imagegettftext, so I'm trying something like this.
Code: Select all
$counts = "12345";
for($i=0;$i<strlen($counts);$i++){
echo file_get_contents(substr($counts,$i,1).".gif");
}However, it will only show the first number, and all the others seem to be ignored.
I have also tried readfile(), but the same thing happened.