Hi hoffendlich önnt ihr mir helfen ich wollte ein Datensatz mithilfe php löschen soweit binn ich gekommen
<?
$host = "localhost";
$user = "xxx";
$password = "xxx";
$dbname = "xxx";
$tabelle ="xxx";
mysql_connect($host, $user, $password);
mysql_select_db('$dbname');
$loeschen = "DELETE FROM $tabelle WHERE id = '3'";
$loesch = mysql_query($loeschen);
?>
Danke im Vorraus