使用表单将数据保存在两个表中

时间:2018-05-30 18:20:15

标签: php mysql

按钮1,按钮2和按钮3有三个按钮,它们用表单打开相同的引导模式。现在的问题是,如果单击button1,那么在提交表单之后,在单击button2然后数据插入table2并且类似于button3时,数据将在table1中插入。

1 个答案:

答案 0 :(得分:0)

您可以尝试向表单添加隐藏输入,单击按钮可以更改此隐藏输入的值,然后您可以决定在发布表单时应使用哪个表来存储数据。

<form>
    <input type="hidden" id="table" name="table" value="first_table">
    <!-- other inputs -->
</form>


<button id="first_table">First</button>
<button id="second_table">Second</button>
<button id="third_table">Third</button>

<script>
    $( "#first_table" ).click(function() {
        $("#table").val("first_table");
    });
    $( "#second_table" ).click(function() {
        $("#table").val("second_table");
    });
    $( "#third_table" ).click(function() {
        $("#table").val("third_table");
    });
</script>