Ciao, volevo sapere come si fa a mettere piu' tasti di funzione.
Devo mettere (es.) due tasti, update e delete, ho provato cosi'
print '<form action="db2_update3.php?customerSRVCLI=' . $customerSRVCLI .'&customerSRVNUM=' . $customerSRVNUM . '" method="POST">';
print '<form action1="db2_delete5.php?customerSRVCLI=' . $customerSRVCLI .'&customerSRVNUM=' . $customerSRVNUM . '" method="POST">';
print '<input type="submit" name="action" value="Update" />';
print '<input type="submit" name="action1" value="Delete" />';
Pero' il secondo tasto (action1) che dovrebbe chiamare la pagina db2_delete5.php
e cancellare il record, assume il valore del primo form e chiama l'altra pagina!
Dove sbaglio, perche fa cosi?
Grazie