Help for this page

Select Code to Download


  1. or download this
       ## increment the sequencer.
        $HoA{sequence} = 0 unless exists $HoA{sequence};
    ...
        print ("HoA test $i: " .   $HoA{test}[2]  ."\n" );
        print ("HoA test $i: @{ $HoA{test} } \n" );        # returns list
        print ("HoA test $i: " .  @{ $HoA{test} } ."\n" ); # returns count
    
  2. or download this
    sub write_guestbook {
        unless (TieLock($GUESTBOOKFILE, 1)) {
    ...
        unTieLock($GUESTBOOKFILE);
        return ($guestbook);
    }