I am trying to build a list separated by commas which should look like this (green, orange, red).
$i=0; $taxonomy = $form_state[values][taxonomy][5]; foreach ($t
Try this:
$i=0; $taxonomy = $form_state[values][taxonomy][5]; $result=''; foreach ($taxonomy as $key => $value) { $result = db_query("SQL CODE goes here"); if (mysql_num_rows($result)){ while ($row = mysql_fetch_row()){ result.=$row[0].','; } } } result=substr($result,0,-1); echo $result;