Im not very good with PHP but I want to try and do this.
Lets assume I have a url to a text file containing a number,
www.somedomain.com/somefile.txt
This file may contain a number 9234 or 10394 or anything else.
I want some php code that will read that text file number, and then create a graphic of that number using individual number files.
So I may have:
1.gif , 2.gif , 3.gif , 4.gif , 5.gif , 6.gif , 7.gif , 8.gif , 9.gif , 0.gif , comma.gif
--
So the code will read that text file and see the number is 10123 and it will build the following code:
<img src="images/1.gif"><img src="images/0.gif"><img src="images/comma.gif"><img src="images/1.gif"><img src="images/2.gif"><img src="images/3.gif">
This would in turn build an image of 10,123 out of the images i have created....
Im sure you understand what i need

any code appreciated.