was kann ich tun, das die neuen einträge immer oben stehen?
so sieht mein script aus:
so sieht mein script aus:
PHP Code:
<?php
include("connect.php");
$ausgabe = mysql_query("SELECT name, kommentar, email FROM guestbook");
while($zeile = mysql_fetch_array($ausgabe))
{
print "<table class='gbook'>
<tr>
<td width='100' valign='top'>".$zeile["name"]."</td>
<td width='270' valign='top'>".$zeile["kommentar"]."</td>
<td width='30' valign='top'></td>
<td width='200' valign='top' class='email'>".$zeile["email"]."</td>
</tr></table>";
print "<table>
<tr>
<td width='100' height='10' valign='top' bgcolor='#BEAF96'></td>
<td width='300' height='10' valign='top' bgcolor='#BEAF96'></td>
<td width='200' height='10' valign='top' bgcolor='#BEAF96'></td>
</tr></table>";
}
?>
EDIT:
php.tags presented by Abraxax
Comment