Encoding html entities (Prevents cross site scripting - XSS)
use HTML::Entities;
$text = "<script>alert('hi');</script>";
$encoded_text = HTML::Entities::encode($text)
[Click to add or edit comments])
Please prepend comments below including a date