I am using a short script to post from data to a PHP processing page.
function get(){
$.post('data.php',{name: form.name.value},
function(output) {
$('#age').hide().html(output).fadeIn(1000);
}
);
}
This will only send one from input:
$.post('data.php',{name: form.name.value},
I am wondering how do I alter the script to send more then one ?