Help for this page

Select Code to Download


  1. or download this
      if ()
    
    ...
      }
      else {
      }
    
  2. or download this
      open my $file, ...
    
    ...
        chomp;
      }
      close $file;
    
  3. or download this
      my $db = DBI->connect(...);
      END {$db and $db->rollback and $db->disconnect}