in reply to Making a Calendar in Perl?
basic usage:
$c = HTML::CalendarMonth->new( month => 10, year => 1980 ); print $c->as_HTML;
It's actually a tree structure made of HTML::Element nodes, so if you're using that it's a natural fit. You can alter the attributes or add/change content to each node before generating the HTML.
Cheers,
Matt
|
|---|