tags:

views:

89

answers:

3

Are there any APIs or libraries that make it easy to generate a calendar for a certain month/year? I need to have some sort of admin interface for a "event planner" part of a CMS for a local youth group and I'm at a loss as to how to generate a decent calendar.

Note: I only need something to generate the calendar HTML, not manage events. I'll be coding that part.

+1  A: 

Two Spring to Mind

  1. PHP Calendar - Free
  2. Easy PHP Calendar - Paid ($29.99 per domain) but a lot slicker than PHP Calendar
Jon P
+1  A: 

This may appear self serving -- but -- my resume website code sample deals directly with building a PHP calendar.

http://altman.at/code-sample.php

Take a look at this link to see the source code for building a calendar. I would be glad to help with any of the details.

Side Note: Any critic of my code sample or resume offline are welcomed

Christopher Altman
Thanks a lot I learned a lot from that sample
Chris T
A: 

I ended up using a jQuery plugin instead. Thanks for the suggestions

http://plugins.jquery.com/project/fullcalendar

Chris T