in reply to Web page output for sendmail problem

Did you declare your subroutine in the same scope {i.e. the same file) or did you want to reference it through a subroutine file (i.e. require or use "subroutines.txt";? Also, use CGI::Carp, (use CGI::Carp qw(fatalsToBrowser);) and strict. It will save you at least one headached, guaranteed!

Replies are listed 'Best First'.
Re: Re: Web page output for sendmail problem
by Anonymous Monk on Nov 22, 2002 at 16:46 UTC
    Thanks for the answer, now it works! What the heck does this use CGI::Carp, (use CGI::Carp qw(fatalsToBrowser);) do?