<?php
mysql_connect("
localhost" , "root" , "");
mysql_select_db("allgemein");
$
sql = "select * from guestbook ORDER BY id DESC LIMIT 0, 10";
$result = mysql_query($
sql);
if (mysql_num_rows($result)==0) {
echo "Eind noch keine Einträge vorhanden.
";
}else{
echo "Anzahl der Einträge: $zeilen
\n";
while ($row=mysql_fetch_assoc($result)) {
echo "
";
if ($row["mail"]="") { //Es wird immer true zurückgegeben
echo "[b]";
echo $row["name"];
echo "[/b]";
}else{
echo "<a href=\"mailto:";
echo $row["mail"]; //Es wird nichts angezeigt
echo "\" class=\"nav4\">[b]";
echo $row["name"];
echo "[/b]</a>";
}
if ($row["web"]="") { //Es wird immer true zurückgegeben
echo "
\n";
}else{
echo " (<a href=\"";
echo $row["web"]; //Es wird nichts angezeigt
echo "\">Webseite besuchen</a>)
\n";
}
echo "<div class=\"klein\">";
echo $row["zeit"];
echo "</div>";
echo nl2br($row["text"]);
echo "
";
}
}
mysql_close();
?>