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:
|
<html>
<head>
<title></title>
</head>
<body>
<center><h2>Bieten</h2><br>
<br>
<form action="bieten1.php" method="post">
<b>Altes Gebot</b> <textarea name="agebot"><?php
include('db.php');
$sql = "SELECT * FROM Gebote";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
echo "$row[Gebotepferdx]";
}
mysql_close();
?></textarea><br>
Neues Gebot eingeben
<input type="text" name="ngebot"><br>
<input type="Submit" value="Bieten">
</form>
</body>
</html> |