Help for this page

Select Code to Download


  1. or download this
    $ftp->put($my_file)
      or die "Couldn't upload file";
    
  2. or download this
    $ftp->put($my_file)
      or {
          log("Couldn't upload $my_file");
    ...
      }
    
    log("$my_file uploaded");