in reply to Re: Re: Re: Inserting a Value
in thread Inserting a Value

If these are coming from CGI, you can even use CGI.pm directly in your template:
[% USE c = CGI; name = c.param("name"); %] <html> ... <body> Hello [% name %], how are you today </body> </html>

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.