virgül php ayrılmış listesi

0 Cevap php

Ben (yeşil, turuncu, kırmızı) bu gibi görünmelidir virgülle ayrılmış bir liste oluşturmak için çalışıyorum.

$i=0;
$taxonomy = $form_state[values][taxonomy][5];
foreach ($taxonomy as $key => $value){
  $result = db_query("SQL CODE goes here");
  if (mysql_num_rows($result)){     
  while ($i<mysql_num_rows($result)){
    $resultset = db_fetch_array($result);
    $comma_separated = implode(",", $resultset);
    $i++;      
  }
  form_set_error("Date", t("$comma_separated. cannot be booked more than once "));
}

0 Cevap