Monday, 15 February 2010

php - delete record from table using codeigniter -



php - delete record from table using codeigniter -

i want delete single record based on status here code below please help me

my code in controller

function delete_vehicle_ad($ad_id) { var_dump($ad_id); $this->classified_ad->del_vehicle_ad($ad_id); redirect('index.php/account/account-detail/index'); }

my code in model

function del_vehicle_ad($ad_id) { var_dump($ad_id); $this->db->where('ad_id',$ad_id); $this->db->delete('ad_vehicle'); }

but not working not delete record database please help me possible

the var_dump in model works ?

if yes, sure table 'ad_vehicle' , field 'ad_id' exists (check syntax) ?

the db connexion works ?

php codeigniter

No comments:

Post a Comment