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:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
|
<html>
<head>
<title>Die Pferdchenfarm</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<br>
<h1>Statistik der Pferde</h1>
<table align="center" width="500">
<tr>
<th id="dunkel" height="25" width="50%" colspan="2"><b>Allgemein</b></th>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Pferde insgesamt</td>
<td id="hell" width="50%"><?php echo $rowAll['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Verkaufspferde</td>
<td id="hell" width="50%"><?php echo $rowVerkaufis['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Privatpferde</td>
<td id="hell" width="50%"><?php echo $rowPrivat['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Schulpferde</td>
<td id="hell" width="50%"><?php echo $rowSchulis['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Turnierpferde</td>
<td id="hell" width="50%"><?php echo $rowTurnier['anzahl'] ?></td>
</tr>
<tr><td> </td></tr>
<tr>
<th id="dunkel" height="25" width="50%" colspan="2"><b>Nach Geschlecht</b></th>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Stuten</td>
<td id="hell" width="50%"><?php echo $rowStuten['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Hengste</td>
<td id="hell" width="50%"><?php echo $rowHengste['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Wallache</td>
<td id="hell" width="50%"><?php echo $rowWallache['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Fohlen</td>
<td id="hell" width="50%"><?php echo $rowFohlen['anzahl'] ?></td>
</tr>
<tr><td> </td></tr>
<tr>
<th id="dunkel" height="25" width="50%" colspan="2"><b>Nach Rasse</b></th>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Holsteiner</td>
<td id="hell" width="50%"><?php echo $rowHolsteiner['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Arabische Vollblüter</td>
<td id="hell" width="50%"><?php echo $rowAraber['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Islandponys</td>
<td id="hell" width="50%"><?php echo $rowIslaender['anzahl'] ?></td>
</tr>
<tr>
<td id="dunkel" height="25" width="50%">Shire Horses</td>
<td id="hell" width="50%"><?php echo $rowShires['anzahl'] ?></td>
</tr>
</table>
</body>
</html> |