基于两个按钮的不同形式动作

时间:2013-09-12 03:54:24

标签: php html forms

我尝试工作的表单有两个按钮: 1:用于查看提交的信息和 2:用于保存已确认的信息。

我的表格的一部分:

    $sql="INSERT INTO applicant_information
    (entrepreneur_name,enterprise_name,.....) values 
    ('".$_POST['entrepreneur_name']."','".$_POST['enterprise_name']."','".$_POST['address']."'...)


     <form method="post" action="business_form.php">
     <table width="70%" cellspacing="2px" cellpadding="5px"style="border:1px solid   black;border-collapse:collapse;">
      <th colspan="8"align="left" style="border:1px solid black;"><b>Personal  

Information</th>
  <tr>
    <td width="18" rowspan="2" style="border:1px solid black;">1</td>
    <td width="142" rowspan="2"style="border:1px solid black;" >Name</td>
    <td style="border:1px solid black;" colspan="2">Entrepreneur</td>
    <td colspan="2"style="border:1px solid black;"><?php echo $_POST['entrepreneur_name']?>
    <input id="entrepreneur_name" name="entrepreneur_name" type="hidden" value="<?php echo $_POST['entrepreneur_name']?>" />
    </td>
  </tr>.....
    //rest of the form

    <input type="submit" name="edit" style="width:10%"value="Back to edit" />
    <input type="submit" name="reg"style="width:10%"value="Submit" />

我尝试做的是在用户点击提交按钮时运行查询。知道怎么做吗?

4 个答案:

答案 0 :(得分:1)

我通常只需要一个按钮就可以在点击时更改表单的目的地,然后提交。例如:

<form action="login.php" method="POST" id="myform">
    <input name="username">
    <input type="password" name="password">
    <input type="submit" value="Login">
    <button id="js-register">Register</button>
</form>

使用

$('#js-register').click(function() {
    $('#myform').attr('action', 'register.php').submit();
});

或者你可以让两个按钮都是Javascript'd并且为了一致性而绑定它们 - 由你决定。

答案 1 :(得分:0)

HTML

<form action="handle_user.php" method="POST />
<input type="submit" value="View" name="view" />
<input type="submit" value="Submit" name="submit">
</form>

按照以下方式检查php中的条件...

if($_POST["view"]) {
  //User hit the view button, handle accordingly
}

if($_POST["submit"]) {
  //User hit the Submit information , handle accordingly
}

答案 2 :(得分:0)

您需要跟踪名为“reg”的按钮。所以在$sql字符串之后,您可以输入以下内容:

<?php
    if (isset($_POST['reg'])) {
        mysql_query($sql);
        if (mysql_affected_rows() > 0) {
            echo "REgistration completed";
        }
        else {
            echo "System could not process the registration";
        }
    }
?>

希望能帮助你。

答案 3 :(得分:0)

您可以将“编辑”设为普通按钮,而不是提交类型。并将click事件绑定到它,可以重定向到可编辑的表单或使表单可编辑(最适合您)。然后“reg”提交可以像现在一样保存数据。