Hallo nochmal liebes Forum. In dem folgenden Quellcode-abschnitt ist irgendwo ein Fehler. Die Seite wird nicht richtig dargestellt. Wenn ich den Abschnitt entferne klappt alles. Woran kann das liegen?
$sql = "SELECT * from tbl_pizzen";
$query = mysqli_query($conn, $sql);
if ($rows = mysqli_fetch_all($query)) {
echo "<table border='1'>";
foreach($rows as $allKey => $row)
{
echo "<tr>";
foreach($row as $columnKey => $column)
{
if($columnKey == 0)
continue;
echo "<td>";
echo $column;
echo "</td>";
}
echo "<td>";
echo "<a href='edit.php?id=$row[0]'>edit</a>";
echo "</td>";
echo "<td>";
echo "<a href='delete.php?id=$row[0]'>delete</a>";
echo "</td>";
echo "</tr>";
}
echo "</table>";