intenta usar implode en lugar de join:
if( !empty($_POST['food']) AND is_array($_POST['food']) ) {
$food = implode(', ', $_POST['food']);
}
else {
$food = "";
}
intenta usar implode en lugar de join:
if( !empty($_POST['food']) AND is_array($_POST['food']) ) {
$food = implode(', ', $_POST['food']);
}
else {
$food = "";
}