Ajax - after “success” go to another page retrieve Get link Facebook X Pinterest Email Other Apps - October 01, 2019 window.location.href = "<?php echo base_url("OrderController/purchaseorder");?>"; 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