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:
  | 
     
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <link rel="stylesheet" type="text/css"
 href="style.css">
  <title>Ponyhof Ivanhoe</title>
</head>
<body>
<center>
<table width="90%">
  <tbody>
    <tr>
      <th width="15%"><b>Vorschau</b></th>
      <th width="15%"><b>Name</b></th>
      <th width="15%"><b>Rasse</b></th>
      <th width="15%"><b>Geschlecht</b></th>
      <th width="15%"><b>Alter</b></th>
      <th width="15%"><b>Preis</b></th>
    </tr>
<?php include("db.php"); $abfrage = "SELECT * FROM pferd WHERE Besitzer = ''";
$ergebnis = mysql_query($abfrage);
while($row -> mysql_fetch_object($ergebnis))
{ ?>
    <tr>
      <td width="15%"><?php echo " <img src="".$row->"Vorschaubild"."">";
?>
      </td>
      <td width="15%"><?php echo $row->"Name"; ?></td>
      <td width="15%"><?php echo $row->"Rasse"; ?></td>
      <td width="15%"><?php echo $row->"Geschlecht"; ?></td>
      <td width="15%"><?php echo $row->"Alter"; ?></td>
      <td width="15%"><?php echo $row->"Preis"; ?></td>
    </tr>
<?php } ?>
  </tbody>
</table>
</center>
</body>
</html>
 |