$settingsDetails=$this->db->query("SELECT faq_en AS faq,contact_number FROM privacy_policy")->row_array();
$lang=$this->getUserLang($user_id);
$field='faq_en';
if($lang=='ar'){
$field='faq_ar';
}
$settingsDetails=$this->db->query("SELECT $field AS faq,contact_number FROM privacy_policy")->row_array();
$userDetails=$this->db->query("SELECT customer.name AS name, customer.profile_image AS profile_photo,customer.gender AS gender, customer.email, customer.dob, customer.profile_city AS city_name, users.notification_status, users.email_status FROM customer INNER JOIN users ON users.id = customer.customer_id WHERE customer.customer_id = ".$user_id." AND users.status = 1 ")->row_array();
$userDetails=$this->db->query("SELECT customer.name AS name, customer.profile_image AS profile_photo,customer.gender AS gender, customer.email, customer.dob, customer.profile_city AS city_name, users.notification_status, users.email_status FROM customer INNER JOIN users ON users.id = customer.customer_id WHERE customer.customer_id = ".$user_id." AND users.status = 1 ")->row_array();