mah... occorre vedere com'è impostato il sistema... in generale puoi mettere più pulsanti cambiandone il "nome" così:

Codice PHP:
<input type="submit" value="Invia" name="SEND" />
<
input type="submit" value="Cancella" name="ERASE" /> 
e verificarne la selezione con:
Codice PHP:
if (isset($_POST['ERASE'])) {
...
};
if (isset(
$_POST['SEND'])) {
...
}; 
...o qualcosa del genere