Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Remova a última vírgula ou impeça que ela seja impressa em todo MySQL/PHP


Eu faria:
$keywords = array();
while($row0 = mysql_fetch_array($result0, MYSQL_ASSOC))
{
   $keywords[] = $row0['LCASE(ord)'];
}

echo implode(',', $keywords);