Help for this page

Select Code to Download


  1. or download this
    # returns the DD-MM-YYYY of the most recent Sunday
    
    ...
            my @times = localtime $timestamp;
            return sprintf("%02d-%02d-%4d", $times[3], $times[4]+1, $times
    +[5]+1900);
    }