我在隐藏字段中传递id但在执行插入查询时。它没有插入数据库。
这是我的代码。
$this->db->query("INSERT INTO "
. DB_PREFIX . "employee_details
SET
employee_id = '" . $this->db->escape($data['empid']) . "',
date = '" . $this->db->escape($data['date']) . "'
此处empid
是隐藏字段ID。