i am using http://keithdevens.com/software/php_calendar to display the calendar.
now i want to take the events within a db table i have w/ events, marked by a timestamp, example timestamp would be 2008-05-07.
I want to through the table and grab all the events from may, and link the dates correctly on the calendar, linking the days on the calendar as an id or by the timestamp, whichever you feel is better.
here is sample code to get it working hard coded.
$days = array
(
14=>array('/weblog/archive/2004/Jan/02','linked-day'),
3=>array('/weblog/archive/2004/Jan/03','linked-day'),
8=>array('/weblog/archive/2004/Jan/08','linked-day'),
22=>array('/weblog/archive/2004/Jan/22','linked-day')
);
//echo generate_calendar(2004, 11, $days, 3, '/weblog/archive/2004/Jan');
echo generate_calendar(date("Y"), date("m"), $days, 3, '/events/?id='.$row['tstamp'].'');