| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- include_once __DIR__ . '/webDbConnection.php';
- $conn = new WebDbConnection( );
- var_dump($_POST);
- $countryId = $_POST['countrySelector'];
- $leagueId = $_POST['leagueSelector'];
- echo "Country id: " . $countryId . " leagueId: " . $leagueId;
- $matches = $conn->getMatches($countryId, $leagueId);
- ?>
- <head>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <table id="matchTable">
- <thead>
- <tr>
- <th>Datum</th>
- <th>Hemma lag</th>
- <th>Borta lag</th>
- <th>Odds 1</th>
- <th>(Odds X)</th>
- <th>Odds 2</th>
-
- </tr>
- </thead>
- <tbody>
- <?php
- foreach ($matches as $match) {
- echo "<tr>";
- echo "<td>".$match['gameDate'] . "</td>";
- echo "<td>".$match['homeTeamName'] . "</td>";
- echo "<td>".$match['awayTeamName'] . "</td>";
- echo "<td>".$match['homeWinPercent'] . "</td>";
- echo "<td>".$match['drawPercent'] . "</td>";
- echo "<td>".$match['awayWinPercent'] . "</td>";
- }
- ?>
- </tbody>
- </table>
- </body>
|