Hallo!
Ich habe ein Problem mit MySQL bzw. PHP
Ich möchte per PHP und MySQL eine "News" aus der Datenbank rauslöschen. Die möchte ich mit
PHP
<?php session_start();if(!isset($_SESSION["userID"])) { header("location: ../../../login");} else { require_once '../../../class/Main.php'; $main = new Main($_SESSION["userID"]); //echo $main->getAdminLevel(); if($main->getAdminLevel() == 2) { $id = $_GET["newsid"]; $mysql = mysqli_connect("****", "****", "****", "****", "3306"); $query = mysqli_query($mysql, "DELETE FROM news WHERE ID='$id'"); mysqli_close($mysql); header("location: ../../home"); return true; } return false;}
Nun wird aber nichts gelöscht. Ich bekomme auch keinen Fehler auf der Seite angezeigt!
Mein Admin Level ist auch 2