开发者

comma separated list in php

开发者 https://www.devze.com 2023-02-03 21:37 出处:网络
I am trying to build a list separated by commas which should look like this (green, orange, red). $i=0;

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 ($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 ")开发者_开发百科);
}


$resultset=array();
while ($data = db_fetch_array($result)) {
    $resultset[] = $data;
}
$comma_separated = implode(",", $resultset);


Someone posted it and I was going to upvote, but they removed it. I think mysql GROUP_CONCAT would be a good solution, since it looks like getting a comma separated list is the only purpose of this query.


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;
0

精彩评论

暂无评论...
验证码 换一张
取 消