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:
|
<?php
include ('db.php');
$sql = "SELECT id, titel, datum, stoy, ersteller, link FROM fashion";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
echo "
<div>
<center>
<table border='0' width='192' height='177'>
<tr>
<td width='192' height='9'><center> $row[titel] </td>
</tr>
<tr>
<td width='169' height='5'><center> $row[id] | Erschienen am $row[datum] von $row[ersteller]</td>
</tr>
<tr>
<td width='192' height='148'><center> $row[story] <br> $row[link]</td>
</tr>
</table>
</center>
</div>
";
}
mysql_close();
?> |