Please see here for what I'm testing: http://niskypto.info/rss.php
In the code, I'm trying to get the location and when (date-time) to
show up. Here's the section of code that's causing trouble (below).
Note that I have $query->setProjection('full'). What the heck do you
use to pull-out this data from the xml?
<?php
foreach ($feed as $event) {
echo "<li>\n";
echo "<h2>" . stripslashes($event->title) . "</h2>\n";
echo stripslashes($event->when) . " <br/>\n";
echo stripslashes($event->where) . " <br/>\n";
echo stripslashes($event->content) . " <br/>\n";
echo "</li>\n";
}
echo "</ul>";
?>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---