This line in each of the <input> tags is what is making the same text show up in each of the inputs.
Quote:
value="{$smarty.get.substring|escape}"
|
You can remove this completely from all 4 as it's not necessary, but just a convenience. Or just leave it in 1 of them, although that doesn't really make sense either.
If you had a different "name" for each of the <input> tags, then you could use this feature and just change it to be
Quote:
value="{$smarty.get.name1|escape}"
value="{$smarty.get.name2|escape}"
value="{$smarty.get.name3|escape}"
value="{$smarty.get.name4|escape}"
|
to have it populate each of the text boxes with the previous values. If you wanted it to do it like this, you'd have to change the php code to reflect these changes.
Hope that wasn't too much information or too confusing. The simplest way to fix it is to remove
Quote:
value="{$smarty.get.substring|escape}"
|
from each of the 4 input tags.
Hope that helps.
Carrie