Page is a not externally linkable
rocknbil - 3:25 pm on Jun 4, 2008 (gmt 0)
Substitute when it comes out $texfield =~ s/</\<\;/ig; and convert it back when it goes in: $texfield =~ s/\<\;/</ig; So that when it's called from a "public" page, it displays as expected, yet doesn't screw up the form when you edit it.
I do this by programming.
$texfield =~ s/>/\>\;/ig;
$texfield =~ s/\>\;/>/ig;