query( "SELECT a.mobile, b.name FROM app_support a LEFT JOIN app_support_translation b ON ( a.support_id = b.support_id ) WHERE a.deleted_at IS NULL AND b.lang = '".$array['lang']."' " . $search_query ) ; if ( $select->num_rows > 0 ){ $status = '200' ; while ( $row = $select->fetch_assoc() ){ $supports[] = $row ; } } $data = [ 'list' => $supports ] ; } require( $require_sub.'footer.php' ) ; ?>