I'm doing an ajax call in a code igniter application. The JS code is the following:
function removeGuest(guestID)
{
if(confirm("Are you sure you want to delete this guest and his preferences?"))
{
$.ajax({
type: "POST",
url: "/event/ajax_delete_guest",
data: { guestID: guestID },
success: function(data)
{
console.log(data);
}
});
}
}
This gets send to my controller:
public function ajax_delete_guest()
{
if($this->input->post('guestID'))
{
$guestID = $this->input->post('guestID');
if($this->events_model->delete_guest($guestID))
{
header('Content-type: application/json');
echo json_encode(TRUE);
}
else
{
header('Content-type: application/json');
echo json_encode(FALSE);
}
}
}
and my model:
public function delete_guest($guestID)
{
$tables = array('event_guest', 'event_guest_prefs', 'event_guest_hotel');
$this->db->where('guestID', $guestID);
if($this->db->delete($tables))
{
return TRUE;
}
else
{
return FALSE;
}
}
When removing a guest in the DB, it returns false in the console.log(). However, I'm fairly sure I'm making it return true when the deletion is successful. Anyone have any idea? I'm breaking my head over this. Thanks.