Help for this page

Select Code to Download


  1. or download this
    my $now = time;
    my $filter = AND(
    ...
        "(dynDateStart<=$now)",
        "(dynDateEnd>=$now)",
    );
    
  2. or download this
    sub AND {
        return _joiner( '&', @_ );
    ...
    sub IGNORE {
        return;
    }