Please help me on where to begin to add individual links for certain dates.
Attached is the code:
From
http://www.cascade.org.uk/software/php/calendar/index.php
function getCalendarLink($month, $year)
and
function getDateLink($day, $month, $year)
You'd have to replace the return "" with a URL string, eg:
{ $url=""; if ($day==11) $url="http://www.blahblah.com"; return $url; }
Thanks. I will try.