我从IBM开发网站上阅读了该教程。 http://www.ibm.com/developerworks/xml/library/x-googleclndr/#resources
我测试成功了。现在我不知道如何在我的活动视图页面插入事件描述。基于以下代码。仅显示事件ID,事件标题。是否有像 event-> description 这样的参数?感谢。
示例代码文件 view.php
中的以下代码foreach ($feed as $event) {
echo "<li>\n";
echo "<h2>" . stripslashes($event->title) . "</h2>\n";
echo stripslashes($event->summary) . " <br/>\n";
$id = substr($event->id, strrpos($event->id, '/')+1);
echo "<a href=\"edit.php?id=$id\">edit</a> | ";
echo "<a href=\"delete.php?id=$id\">delete</a> <br/>\n";
echo "</li>\n";
}