Help for this page

Select Code to Download


  1. or download this
    rock6.jpg
    Software error:
    Can't call method "Flatten" on an undefined value at uploadv25.pl line
    + 232.
    
  2. or download this
    print $filename;
    $localfile = $filename;
    ...
    
    warn "$x" if "$x";
    
  3. or download this
        open( SAVED, ">>$localfile" );    # || die $!;
        while ( $bytesread = read( $remotefile, $buffer, 1024 ) ) {
            print SAVED $buffer;
        }
        close SAVED;