Help for this page

Select Code to Download


  1. or download this
    Useless use of a constant in void context at libbuilder.pl line 77.
    
  2. or download this
    $dbh = ("DBI:mysql:host=localhost; database=blah",
                            "blah", "blah",
                            {PrintError => 0, RaiseError=>1});
    
  3. or download this
    $dbh = DBI->connect( "DBI:mysql:host=localhost;database=blah",
                        $user, $passwd, {PrintError=>0,RaisError=>1});
    
  4. or download this
      $index->{$word} = ( exists $index->{$word} ?
        "$index->{$word}:" : "" ) . "$file_id" unless
          $seen_in_file{$word}++;
    
  5. or download this
     if ( ! $seen_in_file{$word} ) {
        $index{$word} .= ":" if ( exists( $index{$word} ));
        $index{$word} .= $file_id;
        $seen_in_file{$word}++;
     }