Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Code + Results to HTML

by TheoPetersen (Priest)
on Feb 25, 2001 at 03:48 UTC ( [id://60693]=note: print w/replies, xml ) Need Help??


in reply to Code + Results to HTML

Since you are going to stuff the whole file into a scalar anyway, let Perl do that for you:
my $source; { open INPUT, $file; local $/ = undef; $source = <INPUT>; close INPUT; }
You caught the need to escape the tag characters in the code, but there are some cases that will slip through. CGI's escapeHTML function can filter the whole file at once; I'm sure there are other implementations too.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://60693]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-18 14:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found