Is it possible to update one table with 2 queries.
$imp_feature=$_POST["imp_feature"];
$project_data=array(
"feat"=> $imp_feature
);
$db->where("post_project_id",$proj_id);
$project_id=$db->update("post_project",$project_data);
$del_feature=$_POST["del_feature"];
$projects_array=array(
"feat"=> $del_feature
);
$db->where("post_project_id",$proj_id);
$project_result=$db->update("post_project",$projects_array);
I tried but failed.if it is possible then tell me how