我将参数传递给这样的 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();