Help for this page

Select Code to Download


  1. or download this
    my % pages = ( 'index' => 1,
                   'me'    => 1,
    ...
                   'links' => 1 );
    my $page = shift;
    exit 0 unless exists $pages{$page} and $pages{$page} == 1;
    
  2. or download this
    exit 0 unless exists $pages{$page} and
                  defined $pages{$page} and
                  $pages{$page} == 1;