Lepe
como te indiqué la script original que te pasé la convertí en una función, podés verla aqui
http://foros.emprear.com/php/numeros/sust_img.php ó descargarla en
http://foros.emprear.com/php/numeros/sust_img.rar
Lo mismo, pero hecho con JavaScript quedaría así
Código HTML:
Ver original<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es" > <title>Sustituir números por gráficos - Versión Javascript
</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="x" /> <meta name="keywords" content="x" /> <meta http-equiv="Content-Language" content="ES" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="imagetoolbar" content="no" /> <meta name="copyright" content="© 2006, Guillermo Gianello" xml:lang="es" lang="es" /> <meta name="author" content="http://emprear.com" xml:lang="es" lang="es" /> <script type="text/javascript"> //<![CDATA[
function sust_img(numero){
var img_url = 'http://foros.emprear.com/php/numeros/img/';
var ext = 'gif';
var lgt = numero.length;
for (i=0;i<lgt;i++){
var s = numero.substr(i,1);
if (s == '.'){
s = "punto";
}
document.write("<img src='" + img_url + s + "." + ext + "' border='0' alt='' />");
}
document.write("<img src='" + img_url + "euro.gif' border='0' alt='' />");
} //fin funcion
//]]>
<script type="text/javascript"> //<![CDATA[
sust_img('90788.3453');
//]]>
pero seguimos con lo mismo, ¿dónde se genera tu número? y como integrarla en tu tpl
Saludos