Hallo,
wollt mal fragen warum das nicht funktioniert?
bzw.
Bei einem Aufruf von:
Gültiger Eintrag mit ID 20 existiert!
Die ID enthällt keinen Wert?!?
Es hat sogar mal funktioniert, weis nicht worans liegt. Hat einer ne Idee?
MfG
wollt mal fragen warum das nicht funktioniert?
PHP-Code:
<!-delete.php->
<html>
<head><title>Datensatz gelöcht!</title></head>
<body>
<?php include ("dbconnects.php");
mysql_query("DELETE FROM `DBname`.`TBLname` WHERE `TBLname`.`ID` = '$ID'");
echo "Die ID ist: ".$ID."<br>";
mysql_close();
?>
<font color="red"><b>Die Daten wurden erfolgreich gelöscht!</b></font>
<br><br>
<a href="uebersicht.php">zur Übersicht</a>
<body>
<html>
PHP-Code:
<!-delete.php->
<html>
<head><title>Datensatz gelöcht!</title></head>
<body>
<?php include ("dbconnects.php");
mysql_query("DELETE FROM TBLname WHERE ID='$ID'");
mysql_close();
?>
<font color="red"><b>Die Daten wurden erfolgreich gelöscht!</b></font>
<br><br>
<a href="uebersicht.php">zur Übersicht</a>
<body>
<html>
Code:
.../delete.php?ID=20
Die ID enthällt keinen Wert?!?
Es hat sogar mal funktioniert, weis nicht worans liegt. Hat einer ne Idee?
MfG
Kommentar