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