我有一些用于显示图形数据的 JS 代码:
series: [{
name: 'Year 1800',
data: [107, 31, 635, 203, 2]
}, {
name: 'Year 1900',
data: [133, 156, 947, 408, 6]
}, {
name: 'Year 2008',
data: [973, 914, 4054, 732, 34]
}]
我需要让数据在 PHP 的 while 循环中显示。我试过这个:
<?php
$sql="SELECT *, COUNT(category) AS my_groupcount from tickets where deleted = '' and DAY(datetime) = '".$day."' and MONTH(datetime) = '".$month."' and YEAR(datetime) = '".$year."' group by category order by datetime ASC ";
$rs=mysql_query($sql,$conn);
while($result=mysql_fetch_array($rs))
{
echo "name: 'Cat ".$result["category"]."',";
echo "data: [".$result["my_groupcount"]."]";
echo "}, {";
}
?>
我需要对门票表中的类别列进行分组并显示每个类别的图表但它不起作用 - 我认为这是因为在 while 循环中它以}, {
但我需要它以结束}]
我该如何解决这个问题 - 门票表中的类别项目数量一直在变化,因为用户能够添加/删除类别。