Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    binmode STDOUT;  # just to play it safe
    print $zipdata;
    
  2. or download this
    $z->print( encode( $encoding, "RECORD#\tREVISION#\tBOOK#\tCHAP#\tVERSE
    +#\tTEXT, AS EDITED BY: $curdate $curtime (Pacific Time)$CRLF", Encode
    +::FB_CROAK|Encode::LEAVE_SRC ) );
    while ( ( $recnum, $revnum, $book, $chap, $verse, $text ) = $quest->fe
    +tchrow_array() ) {
        $z->print( encode( $encoding, "$recnum\t$revnum\t$book\t$chap\t$ve
    +rse\t$text$CRLF", Encode::FB_CROAK|Encode::LEAVE_SRC ) );
    }