in reply to Rev: CGI backup

One thing that could help improve speed, though I doubt this is an issue, is that instead of doing:
print p("Node Name: ") . p(param('hostess'));
it's typically faster to do
print p("Node Name: ") , p(param('hostess'));
(Note the change to the comma) as the engine avoids some extra temporary variable creation when you do this.

And if you go this route, you can simplify your code in both the html delievery and mail delievery parts with judicious use of commas:

print header(), start_html(-title=>'The Light Dawns'), h4("Take the parms and run"), p("Node Name: ") , p(param('hostess')), # etc...

-----------------------------------------------------
Dr. Michael K. Neylon - mneylon-pm@masemware.com || "You've left the lens cap of your mind on again, Pinky" - The Brain
It's not what you know, but knowing how to find it if you don't know that's important

Replies are listed 'Best First'.
Re: Re: Rev: CGI backup
by Anonymous Monk on Oct 17, 2001 at 23:49 UTC
    Thanks for the suggestion, I'll do it. David