Hello!
What is wrong here please?
$query = DELETE FROM discografi WHERE (id = '" . $nummer . "')";
Klas
You need to quote the whole string.
$query = "DELETE FROM discografi WHERE (id='$nummer')";
Dave