- or download this
<DATAFILEIN>; - or download this
my $now = time;
...
print DATAFILEOUT @temp;
close DATAFILEOUT;
}
- or download this
print DATAFILEOUT "$company_name|$time|$email|$member1|$member1phone|$data|$expiretime|$pictureurl|$password|$website|$member2|$member2phone|$address|$citystatezip|$fax|$catlisting\n"; - or download this
print DATAFILEOUT join( '|', @userinfo{qw(
company_name time email member1 member1phone data
expiretime pictureurl password website member2
member2phone address citystatezip fax catlisting
)}, "\n";
- or download this
$emailme eq 'yes' and emailme( $myemail, $userinfo{'email'} );
$emailuser eq 'yes' and emailme( $userinfo{'email'}, $myemail );