有人能告诉我为什么这不是屈服于自我吗?
我有以下设置:
<?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 数组中都看不到任何内容。我完全忽略了什么简单的事情?
谢谢!