|
|
@@ -111,6 +111,8 @@ $dayStats = $conn->getDayBettingsStats();
|
|
|
<th>Resultat</th>
|
|
|
<th>Games Played</th>
|
|
|
<th>Bet amount</th>
|
|
|
+<th>Unresolved</th>
|
|
|
+<th>Wins</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -121,7 +123,9 @@ foreach ($dayStats as $ds) {
|
|
|
echo "<td>" . $ds['date'] . "</td>";
|
|
|
echo "<td>" . $ds['sumAmount'] . "</td>";
|
|
|
echo "<td>" . $ds['numGames'] . "</td>";
|
|
|
- echo "<td>" . $ds['betAmount'] . "</td>";
|
|
|
+ echo "<td>" . ROUND($ds['betAmount'],2) . "</td>";
|
|
|
+ echo "<td>" . $ds['wins'] . "</td>";
|
|
|
+ echo "<td>" . $ds['pending'] . "</td>";
|
|
|
echo "</tr>";
|
|
|
$sum += $ds['sumAmount'];
|
|
|
}
|