ho una funzione per inviare dati post che è questa :
Codice PHP:
function sendRequest() {
new Ajax.Request("test.php",
{
method: 'post',
postBody: 'name='+ $F('name'),
onComplete: showResponse
});
}
la libreria e prototype.js .
E se volessi inviare altri valori ? Cosa aggiungo?