I am using this code. The input text fields names are Name and Home.
on (release) {
getURL("test.php", "", "POST");
}
And the test file is
<?PHP
$a=$_POST['Name'];
$b=$_POST['Home'];`
echo "$a";
echo "$b";
?>
But it is showing the variables values in URL bar.