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:
|
<?php
include('db.php');
include('head.php');
$artikel = $_GET['artikel'];
$sql = "SELECT id, name, art, artikel, bild, autor FROM artikel ORDER BY name ASC";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
echo "
<table id='artikel'>
<tr>
<th rowspan='4' padding-right='9'><img src='$row[bild]'></th>
<td valign'top'><b>name des artikels</b> $row[name]</td>
</tr>
<tr>
<td valign'top'><b>kategorie</b> $row[art]</td>
</tr>
<tr>
<td valign'top'><b>autor</b> $row[autor]</td>
</tr>
<tr>
<td valign'top' id='artikel'><a href='show_all.php?artikel=$artikel' target='_blank'>lesen</a></td>
</tr>
</table>
<p>";
}
mysql_close();
?> |