in reply to Re: OT? Checkbox list with CGI/Javascriptin thread OT? Checkbox list with CGI/Javascript
And the problem is...? Given this is a perl site, I think the exhortation to generate text given your @userids is implicit.
<tmpl_loop userids> <input type="checkbox" name="ids" value="<tmpl_var name>"> </tmpl_loop> [download]
my %tmpl_vars = ( userids => map { {name => $_} } @userids ); [download]