Hello,

Right now I'm trying to build an application which can be used to add
yourself to an event. I'm using the Zend-framework. I'm able to modify
the attendees, but unfortunately the existing ones are deleted. This
is what I've got:

try {
$event = $gcal->getCalendarEventEntry('http://www.google.com/calendar/
feeds/default/private/full/' . $_POST['id']);
$event->title = $gcal->newTitle($title);
$when = $gcal->newWhen();
$when->startTime = $start;
$when->endTime = $end;
$event->when = array($when);

$who = $gcal->newWho();
$who->email="[email protected]";
// Here the mailadress is added. How do I keep the existing entries
and add this one?

$event->who=array($who);
$event->save();
 }

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" group.
To post to this group, send email to 
[email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to