Help for this page

Select Code to Download


  1. or download this
    if ($start_month == "04"||"06"||"09"||"11"){
    
  2. or download this
    if ($start_month eq "04" || $start_month eq "06" || $start_month eq "0
    +9" || $start_month eq "11"){
    
  3. or download this
    if (grep {$start_month eq $_ } qw(04 06 09 11)) {