Help for this page

Select Code to Download


  1. or download this
    foreach my $f (@fields) {
        my $val = eval qq{ \$fromQuery::$f };
    ...
        push(\@where,        $val);
        push(\@searchString, $val);
    }
    
  2. or download this
    foreach my $f (@fields) {
        no strict 'refs';  # This will only last in this scope
    ...
        push(\@where,        $val);
        push(\@searchString, $val);
    }