Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Can I do Server-Side-Includes in Perl?

by chromatic (Archbishop)
on Apr 06, 2000 at 18:40 UTC ( [id://7035]=note: print w/replies, xml ) Need Help??


in reply to Can I do Server-Side-Includes in Perl?

Instead, why not just open and print the file to the web browser? I like something like this:
{ local *INPUT; open (INPUT, "file.ext") or warn "Cannot open file: $!" && return; print while (<INPUT>); close INPUT; }
Saves on memory that way. If you're not in a subroutine, you'll get an error message with the return statement. You can avoid it this way:
{ local *INPUT; if (open(INPUT, "file.ext")) { print while (<INPUT>); close INPUT; } # for diagnostic purposes, uncomment these lines # else { # print "Couldn't open file: $!"; # } }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-03-28 21:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found