Help for this page

Select Code to Download


  1. or download this
           @t = (localtime)[0..5];
           $this_month = $t[4]+1;
           $previous_month = $t[4];
    
  2. or download this
           $this_month = (localtime)[4];
           $previous_month = $this_month++ ? $this_month-1 : 12;