我想问一下在html5中使用php web服务的问题。在我的第一个html文件中,我想在单击按钮时从文本框获取输入,我想将此输入发送到我的php Web服务,然后在第二个html文件中打印它。我已经通过下面的代码完成了它,但我想将它发送到分离的php Web服务。
第一个html文件。
function submitForm(action)
{
document.getElementById('form1').action = action;
document.getElementById('form1').submit();
}
---------------------------------------------------------
<form action="deneme.php" id="form1" name="form1">
<input type="text" name="searchtxt" id="searchtxt" placeholder="Write something to search"></br>
<div align="center">
<input type="button" onclick="submitForm('deneme.php')" value="Find Location" data-icon="search" data-iconpos="right" data-theme="a" data-inline="true"/></div>
</form>
因为我在onclick中使用了deneme.php,我必须将我的第二页作为php,这是我想要阻止的。
deneme.php文件
<?php
$search=$_REQUEST['searchtxt'];
if(empty($search)){
echo ("<br/>You don't enter anything.");}
else{
echo ($search);
}
?>
正如我上面提到的,我想将变量发送到分离的php web服务并获得回复,但我的第二页也是html。我应该如何修改我的程序来观察它。
由于