I know this is an error staring me blank in the face but for the life of me i cannot see it. any idea why? Any suggestions would be appreciated.
$locations = Select('SELECT location_id, venue_city FROM location');
echo '<select style="width:100px;">' .
        foreach($locations as $location)
        { . '<option value="' .  $location['location_id'] .'">'. $location['venue_city'] . '</option>' . } .
     '</select>';
 
    