in reply to Should be simple, What don't I see?
See also: perl.com: Preventing Cross-site Scripting Attacksuse strict; use HTML::Entities (); my $firstName = 'first'; my $lastName = 'last'; my $email = 'email@email.com'; # do it The One Correct Way print HTML::Entities::encode("$firstName $lastName <$email>");
Makeshifts last the longest.
|
|---|