如何使用php删除未选中并在数据库中插入选中的值?

时间:2015-11-14 07:16:00

标签: php mysql codeigniter

I have table like the below one

我必须将未经检查的值和新检查的值删除到数据库中。怎么做到这一点?已存在的复选框也将再次发布。但如果他们取消选中我需要删除。这是我的下面的代码:

$already_exist_category = array("68","70")
$newly_posted_category = array("124","125","68") or array("124","125");

如何更新或删除新发布的ID并将其插入表格?

1 个答案:

答案 0 :(得分:1)

首先删除不存在的id,然后插入数据。

delete from table where id not in ($already_exist_category)

insert the new id here.