data per datum groeperen/weergeven
Hoe kan ik ervoor zorgen dat alles met dezeflde datum gegroepeerd wordt zodat dezelfde datum maar 1 keer weergegeven wordt.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Het resultaat zoals het nu is :
+------+-----+---------+---------+
|datum |uur |Ploeg1 | ploeg2 |
+------+-----+---------+---------+
|datum |uur |Ploeg3 | ploeg4 |
+------+-----+---------+---------+
|datum |uur |Ploeg1 | ploeg3 |
+------+-----+---------+---------+
|datum |uur |Ploeg5 | ploeg2 |
+------+-----+---------+---------+
<?php
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo "<table border='1'><tr><th>datum</th><th>uur</th><th>thuisploeg</th><th> </th><th>bezoekers</th></tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr><td>" . $row["datum_NL"]. "</td>";
echo "<td>" . $row["UUR"]. "</td>";
echo "<td> " . $row["thuisploeg"]. "</td>";
echo "<td>-</td>";
echo "<td> " . $row["bezoekers"]. "</td>";
echo" </tr>";
}
echo "</table>";
} else {
echo "0 results";
}
?>
Het resultaat zoals ik graag zou hebben
+-----+---------+---------+
| datum(07/03) |
+-----+---------+---------+
|uur |Ploeg3 | ploeg4 |
+-----+---------+---------+
|uur |Ploeg1 | ploeg3 |
+-----+---------+---------+
|uur |Ploeg5 | ploeg2 |
+-----+---------+---------+
<br>
+-----+---------+---------+
| datum(08/03) |
+-----+---------+---------+
|uur |Ploeg3 | ploeg4 |
+-----+---------+---------+
|uur |Ploeg1 | ploeg3 |
+-----+---------+---------+
|uur |Ploeg5 | ploeg2 |
+-----+---------+---------+
<br>
+-----+---------+---------+
| datum(14/03) |
+-----+---------+---------+
|uur |Ploeg3 | ploeg4 |
+-----+---------+---------+
|uur |Ploeg1 | ploeg3 |
+-----+---------+---------+
|uur |Ploeg5 | ploeg2 |
+-----+---------+---------+
Etc..
+------+-----+---------+---------+
|datum |uur |Ploeg1 | ploeg2 |
+------+-----+---------+---------+
|datum |uur |Ploeg3 | ploeg4 |
+------+-----+---------+---------+
|datum |uur |Ploeg1 | ploeg3 |
+------+-----+---------+---------+
|datum |uur |Ploeg5 | ploeg2 |
+------+-----+---------+---------+
<?php
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo "<table border='1'><tr><th>datum</th><th>uur</th><th>thuisploeg</th><th> </th><th>bezoekers</th></tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr><td>" . $row["datum_NL"]. "</td>";
echo "<td>" . $row["UUR"]. "</td>";
echo "<td> " . $row["thuisploeg"]. "</td>";
echo "<td>-</td>";
echo "<td> " . $row["bezoekers"]. "</td>";
echo" </tr>";
}
echo "</table>";
} else {
echo "0 results";
}
?>
Het resultaat zoals ik graag zou hebben
+-----+---------+---------+
| datum(07/03) |
+-----+---------+---------+
|uur |Ploeg3 | ploeg4 |
+-----+---------+---------+
|uur |Ploeg1 | ploeg3 |
+-----+---------+---------+
|uur |Ploeg5 | ploeg2 |
+-----+---------+---------+
<br>
+-----+---------+---------+
| datum(08/03) |
+-----+---------+---------+
|uur |Ploeg3 | ploeg4 |
+-----+---------+---------+
|uur |Ploeg1 | ploeg3 |
+-----+---------+---------+
|uur |Ploeg5 | ploeg2 |
+-----+---------+---------+
<br>
+-----+---------+---------+
| datum(14/03) |
+-----+---------+---------+
|uur |Ploeg3 | ploeg4 |
+-----+---------+---------+
|uur |Ploeg1 | ploeg3 |
+-----+---------+---------+
|uur |Ploeg5 | ploeg2 |
+-----+---------+---------+
Etc..