Jelajahi Sumber

Dump all data on webpage

Axel Nordh 4 tahun lalu
induk
melakukan
c76932d192
1 mengubah file dengan 3 tambahan dan 1 penghapusan
  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);
 $matches = $conn->getMatches($countryId, $leagueId);
 
 
+foreach ($matches as $m) {
+    var_dump($m);
+}
 
 
-var_dump($matches[0]);
 ?>
 ?>