query( $query ) ; if ( $mysqli_query->num_rows > 0 ){ $status = '200' ; $list = [] ; while ( $row = $mysqli_query->fetch_assoc() ){ $row['branch_name'] = dataFilter( $row['branch_name'] ) ; $row['branch_hq'] = ( $row['branch_hq'] != '' ? $row['branch_hq'] : '0' ) ; $list[] = $row ; } $data['list'] = $list ; } } require( $require_sub.'footer.php' ) ; ?>