1
データベースの結果を更新しようとしています。更新クエリが正常に動作していますが、値は更新されていますが、コントローラはelse結果を常に表示します。他return true
正常に実行された場合は、クエリをチェックするコードの下コントローラー/モデルが本当の結果を返さない
ベースコントローラ
#update/save in model
$data = ['twitter_link' => $this->input->post('twitter_link')];
if($this->Restaurant_admin->update_site_settings($data,'setting_id',1,'site_setting')){
$this->session->set_flashdata("update_success_twitter","Twitter link updated successfully.");
redirect('admin/Entry/basic_table');
}else{
$this->session->set_flashdata("update_success_twitter","Something went wrong data not saved.");
redirect('admin/Entry/basic_table');
}
Restaurant_adminモデルモデルでは
public function update_site_settings($data,$where_cond,$value,$table_name)
{
$this->db->set($data);
$this->db->where($where_cond,$value);
$this->db->update($table_name,$data);
}
#update_site_settings
あなたは 'return'を使って値を返すべきです。 – Shihas