我有一个问题,当我尝试在我的模型中运行这个函数时,它什么也没做。打印语句打印出来。
从
child_participants
WHERE中删除Child_Name
='test' 和Parent_username
='tester2'
当我从命令行运行时,它可以正常工作(记录存在并被删除)。但是当我从我的网络应用程序中尝试它时,它没有给我任何错误,但实际上并没有删除任何东西。我知道我正在正确传递数据,因为我在我的控制器和模型中收到了它。是什么赋予了?
function remove_child($username, $participant_name)
{
$where = "`Child_Name`='$participant_name' and`Parent_username`='$username'";
$this->db->where($where, null, false);
$this->db->delete($this->child_table);
echo $this->db->last_query();
}