Fijate si te sirve:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>TEST</title>
<script>
function post(url){
var datos=[].slice.call(arguments);
var f=document.createElement('form');
f.action=datos[0];
f.method='post';
for(i=1;i<datos.length;i++){
var t=document.createElement('input');
t.type='hidden';
t.value=datos[i].valor;
t.name=datos[i].nombre;
f.appendChild(t);
}
document.body.appendChild(f);
f.submit();
}
function get(url){
var datos=[].slice.call(arguments);
var f=document.createElement('form');
f.action=datos[0];
f.method='get';
for(i=1;i<datos.length;i++){
var t=document.createElement('input');
t.type='hidden';
t.value=datos[i].valor;
t.name=datos[i].nombre;
f.appendChild(t);
}
document.body.appendChild(f);
f.submit();
}
onload=function(){
var ejemplo='un valor';
post('test.php',{'nombre':'a','valor':'uno'},{'nombre':'b','valor':500},{'nombre':'c','valor':'foo'},{'nombre':'ejemplo','valor':ejemplo});
//get('test.php',{'nombre':'a','valor':'uno'},{'nombre':'b','valor':500},{'nombre':'c','valor':'foo'});
}
</script>
</head>
<body>
</body>
</html>