Hier das Script:
- Code: Alles auswählen
<?php
$conn = mysql_connect("localhost", "123", "123");
include ("bbc.php");
if (!$conn) {
echo "Keine Verbindung zur DB: " . mysql_error();
exit;
}
if (!mysql_select_db("habbo-fans")) {
echo "Kann maximal93 nicht auswählen: " . mysql_error();
exit;
}
$sql = "SELECT * FROM phpbb_posts_text ORDER BY post_id DESC LIMIT 3";
$result = mysql_query($sql);
if (!$result) {
echo "Anfrage ($sql) konnte nicht ausgeführt werden : " . mysql_error();
exit;
}
if (mysql_num_rows($result) == 0) {
echo "Tabelle nicht Gefunden nicht gefunden, Abbruch";
exit;
}
while ($row = mysql_fetch_assoc($result)) {
echo $row["post_text"];
echo '<br />';
}
mysql_free_result($result);
?>