代码如下:此页面名称为updateScoreNew.php,点击按钮后获得id和score,然后执行更新数据库操作,不知道怎么写,点击按钮怎么都不调用方法,愁死了都。。。
<html>
<head>
<?php
if(isset($_POST['update']))
{
echo "hello";
}
?>
</head>
<body>
<form name="form1" method="post" action="updateScoreNew.php">
id:<input type="text" id="Id" name="Id" />
score:<input type="text" id="score" name="score" />
<input type="submit" value="update" name="update" />
</form>
</body>
</html>
<?php
mysql_query("SET CHARACTER SET utf8");
$client=new SoapClient(null,array('location'=>"http://192.168.0.102:7000/updateNew.php",'uri'=>"http://192.168.0.102:7000/"));
$str= $client->SelectNew();
echo $str;
?> //这段代码只是查询功能
更新数据库方法也在updateNew.php页面中。
请问高手怎么解决呢?