hi
i think i see your problem
if you edit this line in the "comment out" section
open (mailfile,">>".$mailfile);
to
open (mailfile,">> ".$mailfile) or die "$0: couldnt open $mailfile :$!";
note the space after the >> in ">> "
you could also write ">> $mailfile" instead of ">> ".$mailfile
"Schoeman, Remco" wrote:
>
> hi
> i think i see your problem
>
> if you edit this line in the "comment out" section
>
> open (mailfile,">>".$mailfile);
>
> to
>
> open (mailfile,">> ".$mailfile) or die "$0: couldnt open $mailfile :$!";
>
> note the space after the >> in ">> "
>
> you coul
Hi,
Oops - sorry - didn't see you were printing to the mailfile -
Nevermind that one.
You may not have permissions to open the mailfile. Try printing $! and
see what you get as an error. It's always best to do error trapping on
open() calls. If you print $! to standard output, you will need
Hi,
You need to establish your headers before you print anything.
Lisa Wolfisch Nyman <[EMAIL PROTECTED]> IT Warrior Princess
"Life is too short to wear ugly underwear."
Get the facts at http://quickfacts.census.gov/
On Mon, 10 Sep 2001, Peter Bosmans wrote:
> But if i comment the 3 lines be