OK, I've got this far but am stuck:

Using the birthday island code as a basis, I can get this to work as a custom island and print a message if there are, or are not, birthdays on the current day, so hopefully it is quite simple to do the same but for events...

Code
/* PHP CODE HERE, IF NECESSARY */
if ($bday != 0) {
$eventstoday = 'Birthdays Today';
}
else {
$eventstoday = 'No Birthdays Today';
}

/* DO NOT CHANGE THE LINE BELOW */
$body = <<<EOF
$eventstoday
EOF;
/* DO NOT CHANGE THE LINE ABOVE */
So I need someone to let me know if there is a variable like $bday that works in a similar fashion but for events not birthdays, as I'm rubbish a php I can't work it out myself.

Anyone know?