ok I'm trying to figure this out.
If I do the following in phpmyadmin\sql
SELECT *
FROM `destinations`
WHERE `id` = 1 LIMIT 0 , 30
It works and shows the row with the id of 1..
So then when I try this:
SELECT *
FROM `destinations`
WHERE `Destination_ID` = Domestic
LIMIT 0 , 30
It doesn't work and it states that Domestic is unknown..
And I do have 2 rows that have Domestic under Destination_ID.
What am I missing here to make the connection..
thanks for your help
Scott