in reply to Re: Perl says $!what???
in thread Perl says $!what???
sub good { my @info = @_; my $title = "Registration successful!"; my $revised = scalar localtime; my $body = <<HTML; <body> </body> HTML open USRNF,">>$file" or die "Couldn't find user file $file, Perl s +ays $!\n"; print USRNF join "#", @info; print USRNF "\n"; close USRNF; open PASS,">>$pass" or die "Coundn't find user file $pass, Perl say +s $!\n"; print PASS $user_name; print PASS "\\"; print PASS &encryption($password); print PASS "\n"; close PASS; return $title, $body; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl says $!what???
by Enlil (Parson) on Jan 04, 2003 at 00:00 UTC |