On Tuesday 13 August 2002 02:54 pm, Fran Fabrizio wrote:
> Hello! �What I'm wondering is if this is possible:
>
> <input type=text
> � � � � �name=site_<tmpl_var site_id>_name
> � � � � �value=<tmpl_var site_<tmpl_var site_id>_name>
>
>
> We're trying to use the 'associate' feature, but the form field names
> need to be unique each time we load the form (because the form may
> have site_12345_name and site_67890_name this field can't be just
> site_name) and thus the value= has to be formed the way I'm trying
> above, which breaks HTML::Template. �Is there another way to achieve
> this?

Why not build up both variables is the script?  Then you would then endup 
with something like this.

<input type=text
         name=<tmpl_var site_id_name>
         value=<tmpl_var site_value_id_name>
         >

just my 2 cents.

Douglas


-------------------------------------------------------
This sf.net email is sponsored by: Dice - The leading online job board
for high-tech professionals. Search and apply for tech jobs today!
http://seeker.dice.com/seeker.epl?rel_code1
_______________________________________________
Html-template-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/html-template-users

Reply via email to