Help for this page

Select Code to Download


  1. or download this
    my $hostmatch;
    while( $row = $sth->fetchrow_hashref ) {
    ...
            $hostmatch = 1;
        }
    }
    
  2. or download this
    if( param('select') and param('select') !~ /\.\./ )
    {
        my $data = ...
        ...
    }
    
  3. or download this
    my $data;
    if( param('select') and param('select') !~ /\.\./ )
    ...
        $data = ...
        ...
    }