PODIO-PHP-API-如何从通过PodioItem::filter收集的数据构建html表?

PODIO-PHP-API-如何从通过PodioItem::filter收集的数据构建html表?,php,podio,Php,Podio,我正在尝试将上周创建的应用程序中的所有项目作为表格显示在公司内部网站的报告页面上。最后,我想利用这些数据在谷歌图表API中构建图表 下面是谷歌图表的示例html和JavaScritp代码。这是可行的,但我想将收集到的每个PodioItem::filter对象显示为一个表,并在podio.com上的应用程序中显示所有相应的列 $exampleCompany1\u this\u week=PodioItem::filter($app\u id,array('limit'=>500,'filters

我正在尝试将上周创建的应用程序中的所有项目作为表格显示在公司内部网站的报告页面上。最后,我想利用这些数据在谷歌图表API中构建图表

下面是谷歌图表的示例html和JavaScritp代码。这是可行的,但我想将收集到的每个PodioItem::filter对象显示为一个表,并在podio.com上的应用程序中显示所有相应的列

$exampleCompany1\u this\u week=PodioItem::filter($app\u id,array('limit'=>500,'filters'=>array($company\u id=>'exampleCompany1',$createdDate\u id=>this week));
$exampleCompany1_last_week=PodioItem::filter($app_id,数组('limit'=>500,'filters'=>array($company_id=>exampleCompany1',$createdDate_id=>lastweek));
$exampleCompany2_this_week=PodioItem::filter($app_id,array('limit'=>500,'filters'=>array($company_id=>exampleCompany2',$createdDate_id=>thisweek));
$exampleCompany2_last_week=PodioItem::filter($app_id,数组('limit'=>500,'filters'=>array($company_id=>exampleCompany2',$createdDate_id=>lastweek));
$exampleCompany3_this_week=PodioItem::filter($app_id,array('limit'=>500,'filters'=>array($company_id=>exampleCompany3',$createdDate_id=>this week));
$exampleCompany3_last_week=PodioItem::filter($app_id,数组('limit'=>500,'filters'=>array($company_id=>exampleCompany3',$createdDate_id=>lastweek));
KPI Podio报告