help me input box replaces each letter whit gif

Help me!!!
how to do? I need script with an input text box that replaces each letter with a preset gif. For example, if i write Jorge the script automaticaly write on page one gif composed by single gif image.

Are you looking something like this?

[php]<?php
$text = $_POST[‘text’];
$i=0;
while($i<strlen($text)){
echo “”;
$i++;
}
?>[/php]

thanks very very nice.

And if I want to write a text inside a box such as Jessica and this text becomes more images that make up the name. should go to compose the name J.gif e.gif s.gif s.gif a.gif i.gif c.gif is a thing possible? anyone able to give an example? Thanks

SOLVED

Sponsor our Newsletter | Privacy Policy | Terms of Service