Ciao a tutti.
Sto utilizzando questo fie php:
cancella.php
Codice PHP:
<?php
require 'config.php';
require 'connect.php';
$cognome = $_POST['cognome'];
$query = "DELETE FROM utenti WHERE cognome='$cognome';
?>
con questo form
Codice HTML:
<html>
<body>
<form method="post" action="cancella.php">
Cognome:
<input type="text" name="cognome" id="cognome" size="30" /><br />
<br />
<input type="submit" name="pulsante" value="Invia" />
</form>
</body>
</html>
Non da errori.
Però nel database il record rimane, perchè?
Grazie.