Give this a whirl:
my $c = HTML::CalendarMonth->new( year => 2003, month => 1, bgcolor => 'white', ); $c->maxrow($c->maxrow + 1); print $c->as_HTML;
This produces the calendar on the right below:

January2000
SuMTuWThFSa
            1
2345678
9101112131415
16171819202122
23242526272829
3031         
January2003
SuMTuWThFSa
      1234
567891011
12131415161718
19202122232425
262728293031 
             

You can compare $c->maxrow (or $c->last_row) for each calendar in question to decide whether to add the extra row or not. Note that once you add the extra row, $c->maxrow() and $c->last_row() will yield different results -- the former pertains to the HTML table, the latter pertains to the calendar data itself.

Cheers,
Matt


In reply to Re: HTML::CalendarMonth - printing a consistent (6) rows for days of the week by mojotoad
in thread HTML::CalendarMonth - printing a consistent (6) rows for days of the week by jonnyfolk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.