views:

226

answers:

2

Is there a way to transfer the events setup on outlook calendar to a php app.

+1  A: 

You can utilize PHP iCalCreator which is a class that enables you to parse ical files and should be able to display the results.

The links on the website seem to be dead, but search on Google and hopefuly you'll find some leads.

Hope this helps, good luck.

Anthony Forloney
+1  A: 

I had to do this, except it was to a java webservice. I wrote a .NET sync utility and used Visual Studio Tools for Office (VSTO) to interact with Outlook. The util would run and send certain appointmets to a java webservice and stored in a database for reporting at headquarters.

BigJoe714