数组 $data2 用于制作图表,它包含我公司的产品名称。我想将 $data2 中的值(即产品名称)分配给 jquery 数组“类别”,而不是下面代码中列出的位置...?
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'column',
margin: [ 50, 50, 100, 80]
},
title: {
text: 'Product Selling Report'
},
<?php
$sql="select productid,count(productid)as num from orderdetails group by productid order by num desc";
$res=mysql_query($sql);
$i=0;
while($arr=mysql_fetch_array($res))
{
$rep=$arr['productid'];
$sql2="select * from product where productid='$rep'";
$res2=mysql_query($sql2);
$arr2=mysql_fetch_array($res2);
$data2[$i]=$arr2['productname'];
$i=$i+1;
}
?>
xAxis:
categories: [
'Tokyo',
'Jakarta',
'New York',
'Seoul',
'Manila',
'Mumbai',
'Sao Paulo',
'Mexico City',
'Buenos Aires',
'Guangzhou',
'Shenzhen',
'Istanbul'
],
},
});
});
</script>