Well I'm working on a project that links JS to PHP through AJAX. To make this connection, I was using the GET method and I was requesting it like this: "seilaooque.php?valor1=x&valor2=y"
But now I'm thinking of moving everything to POST. But my question is even if in POST I can send the commands in this way "valor1=x&valor2=y"
or I will have to send one value at a time through the method XMLHTTP.send()?