Help for this page

Select Code to Download


  1. or download this
    package Guestbook;
    use base 'CGI::Application';
    ...
    }
    
    1;
    
  2. or download this
    use Guestbook;
    my $gb = Guestbook->new();
    ...
    $gb->enable_rm_set('RESTRICTED');
    
    $gb->run();
    
  3. or download this
    use Guestbook;
    my $gb = Guestbook->new();
    $gb->run();