Hallo Breadfish Community,
Ich brauche von euch mal hilfe.
Ich hab ein fehler denn ich nicht weg bekomme.
Code
Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in G:\xampp\htdocs\homepage\system\template\home.php on line 7
Fehler Code /\
Fehlerhafte Datei:
PHP
<?php
$result = mysqli_query($data,'SELECT `Titel`, `Datum`, `Inhalt` FROM `news` ORDER BY `Datum` DESC');
if (mysqli_num_rows($result) <= 0) {
echo '<p class="text-info">Es sind keine Newsbeitreage vorhanden</p>';
} else {
while ($d = mysqli_fetch_assoc($result)) {
echo '<blockquote>';
echo '<p>'.$d['Inhalt'].'</p>';
echo '<small><cite>'.$d['Author'].'</cite> geposted um '.$d['Datum'].'</small>';
echo '</blockquote>';
}
}
?>
Alles anzeigen
Mit Freundlichen Grüßen,
DarkEvolution | Your Elite Systems Inhaber.