Archive | Google Calendar RSS feed for this section

[HowTo] Google Calendar API : PHP – Manage events (Part 3)

TweetEarlier we saw how to install Zend's GData library and retrieve list of calendars and events. Now its time to manage events i.e. create, update and delete events. First we need the Calendar service instance, so lets instantiate the Zend_GData_Calendar class. PLAIN TEXT PHP: $path = '/home/abbas/ZendGdata/library'; $oldPath = set_include_path(get_include_path() . PATH_SEPARATOR . $path); require_once [...]

Read full story · Comments { 21 }

[HowTo] Google Calendar API : PHP – Retrieve events (Part 2)

TweetIn earlier post we saw how to install GData and retrieve a list of calendars. Continuing the same topic lets now see how to retrieve events from Google calendar using GData library. If you haven't done so, please read the part 1 of this series before continuing. Firstly, lets instantiate the Zend_Gdata_Calendar class. PLAIN TEXT [...]

Read full story · Comments { 0 }

[HowTo] Google Calendar API : PHP (Part 1)

TweetGoogle Calendar is another indispensable tool from mighty Google. As with other Google tools, Calendar too have an API which lets users to manage the events remotely from within their web applications. Google Calendar API request/response works in the form of Google Data API feeds. The popular PHP client library used to work with Calendar [...]

Read full story · Comments { 2 }