- or download this
<p>This
will
look
like
this does below
- or download this
<PRE>
This
...
the
newlines
</PRE>
- or download this
sub escapeHTML {
my ( $escape, $text ) = @_;
...
$escape =~ s/([^\000-\177])/'&#' . (sprintf "%3d", ord $1) . ';'/e
+g;
return $escape;
}
- or download this
print "Content-type: text/html\n\n";
...
print '</pre>';
sub escapeHTML { ..... }