gpt4 book ai didi

php - HTML 表单提交给自己

转载 作者:太空狗 更新时间:2023-10-29 13:54:50 24 4
gpt4 key购买 nike

谁能告诉我这到底是为什么不服从自己?

我有以下设置:

<?php
print_r($_POST);
?>

<form name="bizLoginForm" method="post" action"" >
<table id="loginTable">
<tr><td>Username:</td><td><input type="text" id="loginUsername" /></td></tr>
<tr><td>Password:</td><td><input type="password" id="loginPassword" /></td></tr>
</table>
<input type="Submit" value="Login" />
</form>

每次单击提交按钮时,我都看不到 POST 数组中的任何内容。我完全忽略了什么简单的事情?

谢谢!

最佳答案

除此之外,表单元素中的 action 属性中缺少 equals。

您的输入需要名称属性:

<tr>
<td>Username:</td>
<td><input id="loginUsername" name="loginUsername" type="text" /></td>
</tr>

关于php - HTML 表单提交给自己,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12009910/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com