The query you were trying to run failed, the server gave the following reason:
Column 'country_id' in from clause is ambiguous
SELECT
PROPERTIES.*,
COUNTRIES.country AS property_country,
MEMBER_INFO.desired_destination,
MEMBER_INFO.desired_dates,
MEMBER_INFO.desired_bedrooms,
COUNTRIES2.country AS member_country
FROM
PROPERTIES LEFT JOIN COUNTRIES
USING (country_id)
LEFT JOIN MEMBER_INFO
ON (PROPERTIES.user_id = MEMBER_INFO.user_id)
LEFT JOIN COUNTRIES AS COUNTRIES2
USING (country_id)
WHERE
PROPERTIES.properties_id = 1004