将多个复选框提交到单个数据库的多个表

时间:2015-12-10 05:08:22

标签: php html mysql checkbox

我有4个复选框,所以当我点击提交时,我希望每个复选框都通过php在单个数据库中的不同表中更新。 即

例:     1. first_eventcheckbox - >第一个表(数据库)

2. sec_eventcheckbox    --> secondevent table (database)

3. third_eventcheckbox  --> thirdevent table (database)

4. fourth_eventcheckbox --> fourthevent table (database)

所有表都在同一个数据库中。

因此,当我点击提交时,我需要选中复选框以发送到选定的表格

我需要php代码,即php代码,用于将这些值发送到不同的表。 任何帮助都是适当的。

提前致谢。

2 个答案:

答案 0 :(得分:0)

你可以尝试这样的事情,

if($_POST['first_checkbox']) {
    // insert to first table
}


if($_POST['second_checkbox']) {
    // insert to second table
}

... so on.

答案 1 :(得分:-1)

if(isset($_POST['event_name']) && !empty($_POST['event_name'])) {
    if($_POST['event_name']=='faceart') {
        //insert into first table
    } elseif ($_POST['event_name']=='dance') {
        //insert into second table
    } elseif ($_POST['event_name']=='nailart') {
        //insert into third table
    } elseif ($_POST['event_name']=='treasurehunt') {
        //insert into fourth table
    }
}

此答案根据您的链接提供:http://www.tynate.in/