Codice PHP:
<?
$testo="Ciao come va?";
$testo=str_replace("a","<img src=img\a.gif>",$testo);
$testo=str_replace("b","<img src=img\b.gif>",$testo);
$testo=str_replace("c","<img src=img\c.gif>",$testo);
$testo=str_replace("d","<img src=img\d.gif>",$testo);
$testo=str_replace("e","<img src=img\e.gif>",$testo);
$testo=str_replace("f","<img src=img\f.gif>",$testo);
$testo=str_replace("g","<img src=img\g.gif>",$testo);
$testo=str_replace("h","<img src=img\h.gif>",$testo);
$testo=str_replace("i","<img src=img\i.gif>",$testo);
$testo=str_replace("j","<img src=img\j.gif>",$testo);
$testo=str_replace("k","<img src=img\k.gif>",$testo);
$testo=str_replace("l","<img src=img\l.gif>",$testo);
$testo=str_replace("m","<img src=img\m.gif>",$testo);
$testo=str_replace("n","<img src=img\n.gif>",$testo);
$testo=str_replace("o","<img src=img\o.gif>",$testo);
$testo=str_replace("p","<img src=img\p.gif>",$testo);
$testo=str_replace("q","<img src=img\q.gif>",$testo);
$testo=str_replace("r","<img src=img\r.gif>",$testo);
$testo=str_replace("s","<img src=img\s.gif>",$testo);
$testo=str_replace("t","<img src=img\t.gif>",$testo);
$testo=str_replace("u","<img src=img\u.gif>",$testo);
$testo=str_replace("v","<img src=img\v.gif>",$testo);
$testo=str_replace("w","<img src=img\w.gif>",$testo);
$testo=str_replace("x","<img src=img\x.gif>",$testo);
$testo=str_replace("y","<img src=img\y.gif>",$testo);
$testo=str_replace("z","<img src=img\z.gif>",$testo);
$testo=str_replace("A","<img src=img\al.gif>",$testo);
$testo=str_replace("B","<img src=img\bl.gif>",$testo);
$testo=str_replace("C","<img src=img\cl.gif>",$testo);
$testo=str_replace("D","<img src=img\dl.gif>",$testo);
$testo=str_replace("E","<img src=img\el.gif>",$testo);
$testo=str_replace("F","<img src=img\fl.gif>",$testo);
$testo=str_replace("G","<img src=img\gl.gif>",$testo);
$testo=str_replace("H","<img src=img\hl.gif>",$testo);
$testo=str_replace("I","<img src=img\il.gif>",$testo);
$testo=str_replace("J","<img src=img\jl.gif>",$testo);
$testo=str_replace("K","<img src=img\kl.gif>",$testo);
$testo=str_replace("L","<img src=img\ll.gif>",$testo);
$testo=str_replace("M","<img src=img\ml.gif>",$testo);
$testo=str_replace("N","<img src=img\nl.gif>",$testo);
$testo=str_replace("O","<img src=img\ol.gif>",$testo);
$testo=str_replace("P","<img src=img\pl.gif>",$testo);
$testo=str_replace("Q","<img src=img\ql.gif>",$testo);
$testo=str_replace("R","<img src=img\rl.gif>",$testo);
$testo=str_replace("S","<img src=img\sl.gif>",$testo);
$testo=str_replace("T","<img src=img\tl.gif>",$testo);
$testo=str_replace("U","<img src=img\ul.gif>",$testo);
$testo=str_replace("V","<img src=img\vl.gif>",$testo);
$testo=str_replace("W","<img src=img\wl.gif>",$testo);
$testo=str_replace("X","<img src=img\xl.gif>",$testo);
$testo=str_replace("Y","<img src=img\yl.gif>",$testo);
$testo=str_replace("Z","<img src=img\zl.gif>",$testo);
$testo=str_replace("@","<img src=img\chiocciola.gif>",$testo);
$testo=str_replace("\"","<img src=img\slash2.gif>",$testo);
$testo=str_replace(":","<img src=img\duepunti.gif>",$testo);
$testo=str_replace("!","<img src=img\esclamativo.gif>",$testo);
$testo=str_replace("-","<img src=img\meno.gif>",$testo);
$testo=str_replace("?","<img src=img\interrogativo.gif>",$testo);
$testo=str_replace(";","<img src=img\puntovirgola.gif>",$testo);
$testo=str_replace("/","<img src=img\slash2.gif>",$testo);
$testo=str_replace("0","<img src=img\0.gif>",$testo);
$testo=str_replace("1","<img src=img\1.gif>",$testo);
$testo=str_replace("2","<img src=img\2.gif>",$testo);
$testo=str_replace("3","<img src=img\3.gif>",$testo);
$testo=str_replace("4","<img src=img\4.gif>",$testo);
$testo=str_replace("5","<img src=img\5.gif>",$testo);
$testo=str_replace("6","<img src=img\6.gif>",$testo);
$testo=str_replace("7","<img src=img\7.gif>",$testo);
$testo=str_replace("8","<img src=img\8.gif>",$testo);
$testo=str_replace("9","<img src=img\9.gif>",$testo);
echo $testo;
?>
Come mai?