Gäste buch macht probleme
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
-
Hallo
ich habe ein gästebuch geschreiben das auf der profielseite eines users ausgegeben werden soll:
$sql2 = "SELECT ". " * ". "FROM ". "Tabelle ". "WHERE ". "(Nick = '$Nick')"; $result2 = mysql_query ($sql2); echo "<table border='0'> <tr> <td width='120px'><b>Gästebuch:</b></td> <tr> </table><br>"; while ($data2 = mysql_fetch_array($result2)) { $a = $data2["Autor"]; $b = $data2["Inhalt"]; echo "<table border='0' width='90%'> <tr> <td width='130px'><b>Von:</b></td> <td><a href='?URL=profiel.php&user=$a'>$a</a></td> <tr> <td width='130px'><b>Inhalt:</b></td> <td>".str_replace("\n", "<br />\n", $b)."</td> </tr> </table> <br> "; }
kann ich das irgendwie machen, dass nur "Gästebuch:" ausgegeben wird wenn auch einträge da sind?
MFG:ChatVZ -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
chatvz schrieb:
$sql2 = "SELECT ". " * ". "FROM ". "Tabelle ". "WHERE ". "(Nick = '$Nick')"; $result2 = mysql_query ($sql2);
if (mysql_num_rows($result2) > 0) {
chatvz schrieb:
echo "<table border='0'> <tr> <td width='120px'><b>Gästebuch:</b></td> <tr> </table><br>"; while ($data2 = mysql_fetch_array($result2)) { $a = $data2["Autor"]; $b = $data2["Inhalt"]; echo "<table border='0' width='90%'> <tr> <td width='130px'><b>Von:</b></td> <td><a href='?URL=profiel.php&user=$a'>$a</a></td> <tr> <td width='130px'><b>Inhalt:</b></td> <td>".str_replace("\n", "<br />\n", $b)."</td> </tr> </table> <br> "; }
} else { echo "Kein Eintrag vorhanden!"; }
Gruß
Karlja
Beitrag zuletzt geändert: 11.1.2009 15:38:21 von karlja -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage