laravel - order query Get link Facebook X Pinterest Email Other Apps - December 19, 2022 $data = Order::query() ->where('employeeid', 'LIKE', "%{$employeeid}%") ->orderBy('id', 'DESC') ->paginate(25); Get link Facebook X Pinterest Email Other Apps Comments
get data by codeiginter - January 23, 2023 $this -> data [ 'department' ] = $this -> db -> query ( " SELECT * FROM blog " ) -> result (); Read more
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