In codeigniter I want to delete record from a table. But at the same time I want to remove a record from another table which having foreign key to that record. Is there any possible way to do this using codeigniter?
1st delete query
$this->db->where('id',$id);
$this->db->delete('category_info');
1st table
id | description | image
2nd table
id | category_id | parent_category