Help for this page

Select Code to Download


  1. or download this
        # open a new file and transfer bit by bit from what's in the buffe
    +r
        open( SAVED, ">>$localfile" );    # || die $!;
    ...
            print SAVED $buffer;
        }
        close SAVED;
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    my $combo = join("::", $filename, $title, $desc, $w, $h);
    $upload{localtime()} = "$combo";
    }