mah... occorre vedere com'è impostato il sistema... in generale puoi mettere più pulsanti cambiandone il "nome" così:
e verificarne la selezione con:Codice PHP:<input type="submit" value="Invia" name="SEND" />
<input type="submit" value="Cancella" name="ERASE" />
...o qualcosa del genereCodice PHP:if (isset($_POST['ERASE'])) {
...
};
if (isset($_POST['SEND'])) {
...
};

Rispondi quotando