提交按钮不能在PHP脚本中工作 - 通过按什么都不会发生

时间:2013-02-28 07:50:48

标签: php html

我不知道为什么提交按钮不起作用。当我点击它时,没有任何反应。 什么是错误不知道? 这是代码:

<form action=members.php method=post>

<br><br><Center><table><tr><td colspan=2 align=center><h3>Members Login Area</h3></td></tr>
<tr><td>Member's ID</td><td><input type=text name=id></td></tr>
<tr><td>Password</td><td><input type=password name=password></td></tr>
<tr><td>&nbsp;</td><td>
<a href="forgot.php" onclick="doexit=false;"><font face="Verdana,Arial,Helvetica" size="1" color="#000000"><b>Forgot Your Password?</b></font></a></td></tr>
<tr><td colspan=2 align=center><input type=submit value="Log In"></td></tr>         
</table></form>

2 个答案:

答案 0 :(得分:2)

在哪里是引号(“)。你到处错过了引号:P

<form action="members.php" method="post">

//您的代码必须是这样的。

<form action="members.php" method="post">
  <br><br>
  <center>
    <table>
      <tr>
        <td colspan="2" align="center">
          <h3>
            Members Login Area
          </h3>
        </td>
      </tr>
      <tr>
        <td>
          Member's ID
        </td>
        <td>
          <input type="text" name="id"></td>
      </tr>
      <tr>
        <td>
          Password
        </td>
        <td>
          <input type="password" name="password">
        </td>
      </tr>
      <tr>
        <td>
          &nbsp;
        </td>
        <td>
          <a href="forgot.php" onclick="doexit=false;">
            <font face="Verdana,Arial,Helvetica" size="1" color="#000000">
            <b>
              Forgot Your Password?
            </b>
            </font>
          </a>
        </td>
      </tr>
      <tr>
        <td colspan="2" align="center">
          <input type="submit" value="Log In">
        </td>
      </tr>         
    </table>
  </center>
</form>

答案 1 :(得分:2)

<input type=submit value="Log In">

应该是

<input type='submit' value="Log In">

和它类似type="something"而不是type=something

输入的结构是

<input type='keyword' >和关键字可以是from this list(w3.org)