Help for this page

Select Code to Download


  1. or download this
    if ($q->param('name') =~ /\|/
     || $q->param('site') =~ /\|/
     || $q->param('siteid') =~ /\|/
    # and so on....
    ) {
    # whatever...
    
  2. or download this
    foreach my $p (qw(name site siteid ...)) 
    {
        if ($q->param($p) =~ /\|/)
    ...
            # or something
        }
    }