Here's one way to do that. $number holds the number you want to turn into images:
PHP Code:
$number = 123;
$images = '<img src="' . implode('.gif"><img src="', preg_split('//', (string) $number, -1, PREG_SPLIT_NO_EMPTY)) . '.gif">';
(the preg_split() call is taken from PHP's manual)
For that number you'll get this output:
Code:
<img src="1.gif"><img src="2.gif"><img src="3.gif">