Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

jdtoronto's scratchpad

by jdtoronto (Prior)
on Jun 03, 2004 at 16:50 UTC ( [id://360269]=scratchpad: print w/replies, xml ) Need Help??

$smtp->datasend("Date: $now\n"); $smtp->datasend("To: $self->{_to}\n"); $smtp->datasend("CC: $self->{_cc}\n") if ( $self->{_cc} ); $smtp->datasend( $self->{_bcc} ) if ( $self->{_bcc} ); $smtp->datasend("From: $from\n"); $smtp->datasend("X-contid: $self->{_cid}\n"); $smtp->datasend("Subject: $self->{_subject}\n\n"); $smtp->datasend("\n"); $smtp->datasend("@body"); $smtp->datasend("\n"); my $rv = $smtp->dataend(); $smtp->quit();
my $q = $self->query; my $file = $q->param('image'); my $FH = $q->upload('image'); $file =~ m/^.*(\\|\/)(.*)/; my $dir = "/home/f/img"; open( OP, ">$dir/$file" ) or die "$!"; chmod 0777, "$dir/$file"; binmode OP; my $buffer; my $bytesread; while ( $bytesread = read( $FH, $buffer, 1024 ) ) { print OP $buffer; } close LOCAL;
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-03-29 15:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found