我想问关于在 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。我应该如何修改我的程序来观察这一点。
谢谢