$.post("./somescript.php", {one: 1, two: 2}, function(response) { alert(response); }
$one = $_POST["one"]; $two = $_POST["two"]; echo($one." ".$two);