get data by codeiginter Get link Facebook X Pinterest Email Other Apps - January 23, 2023 $this->data['department'] =$this->db->query("SELECT * FROM blog ")->result(); Get link Facebook X Pinterest Email Other Apps Comments
mulitple where query codeiginter - October 28, 2022 $query = $this -> $db -> select ( '*' ) -> where ([ 'b_cat_id' => $b_cat_id , 'b_s_cat_id' => $b_s_cat_id ]) -> get ( 'web_about' ) -> result (); Read more
other table connect - December 13, 2022 // Load database $db2 = $this -> load -> database ( 'database2' , TRUE ); // Select records from 2nd database $db2 -> select ( '*' ); $db2 -> where ( 'id' , $business_id ); $query = $db2 -> get ( 'cld_businesses' ); $bussinessData = $query -> first_row (); Read more
Comments
Post a Comment