Explorar el Código

Dump all data on webpage

Axel Nordh hace 4 años
padre
commit
c76932d192
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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]);
 ?>