次のように引数を PHP Web サービスに渡しています。
localhost/webservice1.php?method=browse®=001&name=john
しかし、それはNotice Undefined Index: method
私のPHPコードは次のようなものです:
$methd = $_POST['method'];
if($methd=="save")
save();
if($methd=="signup")
signup();
if($methd=="browse")
browse();