isset提交无效

时间:2012-06-22 15:53:42

标签: php

我正在使用isset函数检查是否单击了提交按钮,但它无法正常工作。它没有进入if。这是我的代码。我没有得到问题持续存在的地方。

<table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
        <td><h2><br />
            User Registration</h2>
            <p>&nbsp;</p></td>
    </tr>
    <tr>
        <td>
            <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form1" id="form1" onsubmit="return Validate();">
                User Name[E-mail ID]: <input type="text" name="username" style="width:230px; height:20px;" /><br /><br />
                Password : <input type="password" name="password" style="width:230px; height:20px;" /><br /><br />
                Name <input type="text" name="name" style="width:230px; height:20px;" /><br /><br />
                Contact Number: <input type="text" name="phone" style="width:230px; height:20px;" /><br /><br />
                Email: <input type="text" name="email" style="width:230px; height:20px;" /><br /><br />
                <input type="submit" value="REGISTER" />
            </form>

            <?php
            include('connect.php');
            if (isset($_POST['submit']))
            {
                echo "1";
                $username = $_POST['username'];
                echo $username;

                $password = $_POST['password'];
                $name = $_POST['name'];
                $phone = $_POST['phone'];   

                $email = $_POST['email'];
                //$id = $_GET['aid'];

                $sql = "INSERT INTO user_info(application_id, username, password, name, contact, email) VALUES (" . $aid. ", " .$username.", ".$password.", ".$name.",". $phone.", ".$email.") ";
                echo $sql;
                mysql_query($sql) or die(mysql_error());
                //header("Location: index1.php");
            }

            ?>

        </td>
    </tr>
    <tr>
        <td>&nbsp;</td>
    </tr>
</table>

请让我知道我哪里出错。

4 个答案:

答案 0 :(得分:2)

更改

<input type="submit" value="REGISTER" />

<input type="submit" name="submit" value="REGISTER" />

答案 1 :(得分:1)

您需要为提交按钮提供名称属性

 <input type="submit" name="submit" value="REGISTER" />

答案 2 :(得分:1)

您需要一个名为submit的输入元素。

您可以将提交按钮设为此名称,例如

<input type="submit" value="REGISTER" name="submit" />

或者您可以使用名称创建隐藏输入:

<input type="hidden"  name="submit" />

答案 3 :(得分:0)

您可以改为测试表单是否已经回复:

if (count($_POST) > 0)
{
    //code
}

只有在至少有一个已回发的字段时才会触发。