PHP / ICAL / Google Calendar?

I can't speak to the description, but I have found a bug in this in that 'summary' won't output but 'SUMMARY' as the property name WILL output. Ive been trying myself to get this to work in Google but to no avail. I do have the 'description' properly the same as yours so I'm not sure why that is not outputting for you.

Up vote 1 down vote favorite share g+ share fb share tw.

I'm trying to get an ical feed working with Google Calendar and I just can't seem to get it right. I'm using the PHP iCalcreator class (http://www.kigkonsult. Se/iCalcreator/index.

Php) and here's the code I'm using: Get(1); $v = new vcalendar(); // create a new calendar instance $v->setConfig('unique_id', 'Domain ' . $user->id); // set Your unique id $v->setProperty('method', 'PUBLISH'); // required of some calendar software $v->setProperty('X-WR-CALNAME;VALUE=TEXT', 'My Calendar'); $v->setProperty('X-WR-CALDESC', 'The description'); $tasks = $user->GetTasks(); foreach ($tasks as $task) { $vevent = new vevent(); // create an event calendar component $year = date('Y', strtotime($task->due)); $month = date('m', strtotime($task->due)); $day = date('d', strtotime($task->due)); $hour = date('H', strtotime($task->due)); $min = date('i', strtotime($task->due)); $sec = date('s', strtotime($task->due)); $vevent = new vevent(); $vevent->setProperty('dtstart', array('year'=> $year, 'month'=> $month, 'day'=> $day, 'hour'=> $hour, 'min'=> $min, 'sec'=> $sec)); $vevent->setProperty('dtend', array('year'=> $year, 'month'=> $month, 'day'=> $day, 'hour'=> $hour, 'min'=> $min, 'sec'=> $sec)); $vevent->setProperty('summary', $task->subject); $vevent->setProperty('description', "Description of the task"); $v->setComponent($vevent); } $v->returnCalendar();? > The problem is, the summary and description for the calendar don't come through, and the description for each event doesn't come through.

Any idea what's going on? Php google-calendar ical link|improve this question asked Jul 9 '10 at 4:30Ian McIntyre Silber8801725 65% accept rate.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions