Come da titolo io ho creato in PHP una tabella contenente i messaggi di un utente ma questi messaggi devono essere anche eliminati come posso fare?
Un grazie in anticipo!! NON DITE DI USARE MySQLi , questo è solo un test<table>
<?php
$query = "SELECT * FROM message WHERE id=$username";
$result = mysql_query($query,$connection);
while ($row = mysql_fetch_array($result)){
echo "<tr>";
echo "<td>$row[nome]</td>";
echo "<td>$row[messaggio]</td>";
echo "<td>$row[data]</td>";
echo "<td>QUI VOGLIO CREARE UN QUALCOSA CHE MI CANCELLI SOLO IL MESSAGGIO IN CUI CLICCO CANCELLA </td>";
echo "</tr>";
}
?>
</table>