为什么我不能从其他PC执行.php?

时间:2018-07-12 17:03:57

标签: php html network-programming

我想从另一台PC执行PHP?

这是我的代码

<!DOCTYPE html>
<html>
<body>
<form id="form1" target="_blank" method="post" action="192.168.18.131/myphp/test2.php">
<input type="text">
<input type="button" onclick="this.disabled=true;document.getElementById('form1').submit();" value="Button">
</form>
</body>
</html>

它不会创建新标签。

1 个答案:

答案 0 :(得分:-1)

尝试使用formaction属性作为输入内容。

以下是链接: https://www.w3schools.com/tags/att_button_formaction.asp

如果您想从文本输入中检索值,那么您的文本输入也需要一个名称。