浏览代码

Dump all data on webpage

Axel Nordh 4 年之前
父节点
当前提交
c76932d192
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      OddsJavaFx/src/web/matchTable.php

+ 3 - 1
OddsJavaFx/src/web/matchTable.php

@@ -12,6 +12,8 @@ echo "Country id: " . $countryId . " leagueId: " . $leagueId;
 
 $matches = $conn->getMatches($countryId, $leagueId);
 
+foreach ($matches as $m) {
+    var_dump($m);
+}
 
-var_dump($matches[0]);
 ?>