Help for this page

Select Code to Download


  1. or download this
    my $cgi = new CGI;
    # .... bunch of calendarview.pl code here ....
    ...
    $newyears->param('month',1);
    $newyears->param('day',1);
    my $newyears_url = $newyears->self_url;
    
  2. or download this
    sub new_self_url {
        my %params = @_;
    ...
    # dates like this:
    my $newyears = new_self_url(month => 1, day => 1);
    my $christmas = new_self_url(month => 12, day => 25);