in reply to password problem with non-alphanumerics

I am well aware that rolling your own templating system is one of the rites of passage for almost every Perl programmer, but take a look at the already existing templating systems. Two of them (HTML::Template) and Petal) automatically encode attributes correctly, for the "other big two" (Template Toolkit and HTML::Mason) I'm quite sure that it is the same, but I haven't used them.

Other than that, the HTML::Entities module is what you need, like tinita already showed.

  • Comment on Re: password problem with non-alphanumerics

Replies are listed 'Best First'.
Re: Re: password problem with non-alphanumerics
by js1 (Monk) on May 07, 2004 at 12:35 UTC

    Thanks,

    The HTML::Entities did the trick.