I have a sql statement in my php page that looks like this:
$places=array('CHI','DET','LA','NYC','DALLAS');
$SQL="SELECT NAME,
ID,
PHONE,
EMAIL,
LOCATION
FROM SHOPPERS
WHERE LOCATION IN '{$places}'
AND ID BETWEEN '25687' AND '28050'
";
Then I'm echoing out the query as a table, but I'm not getting any results because there's a problem with the $places array. Any help would be appreciated. Thank you