Sfoglia il codice sorgente

Dump all data on webpage

Axel Nordh 4 anni fa
parent
commit
c76932d192
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  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]);
 ?>