comma separated list in php

后端 未结 3 1656
独厮守ぢ
独厮守ぢ 2021-01-29 15:48

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         


        
相关标签:
3条回答
  • 2021-01-29 16:25
    $resultset=array();
    while ($data = db_fetch_array($result)) {
        $resultset[] = $data;
    }
    $comma_separated = implode(",", $resultset);
    
    0 讨论(0)
  • 2021-01-29 16:39

    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 讨论(0)
  • 2021-01-29 16:52

    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.

    0 讨论(0)
提交回复
热议问题