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:
|
<html>
<head>
<link rel="stylesheet" type="text/css" href="../style.css">
<title>Verkaufsstall Emmersbach</title>
</head>
<body>
<?php
include("db.php");
$Ergebnis = mysql_query("SELECT * FROM pferde");
if (@mysql_num_rows($Ergebnis) == 0) {
echo "Keine Pferde vorhanden.";
}
else {
while($Data = mysql_fetch_array($Ergebnis)) {
echo "<a href=steckbrief.php?id=$Data[id] target=content>$Data[zuchtname]</a><br>
";
}
}
?>
</body>
</html> |