ถาม โค้ด php Error !!

กระทู้คำถาม
<?php
//connect ฐานข้อมูล
include_once ('include/connectioncsv.php');
$monthx = array(); // ตัวแปรแกน x
$y2556 = array(); //ตัวแปรแกน y
//sql สำหรับดึงข้อมูล จาก ฐานข้อมูล
$sql = "SELECT line.`month`, line.`value` FROM line";
//จบ sql
$result = mysqli_query($sql);
while($row=mysqli_fetch_array($result)) {
//array_push คือการนำค่าที่ได้จาก sql ใส่เข้าไปตัวแปร array
array_push($y2556,$row[value]);
array_push($monthx,$row[month]);
}
?>
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <title>Highcharts Example</title>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>    
        <script>
$(function () {
        $('#container').highcharts({
            chart: {
                type: 'line' //รูปแบบของ แผนภูมิ ในที่นี้ให้เป็น line
            },
            title: {
                text: 'จำนวนลูกค้า' //
            },
            subtitle: {
                text: ''
            },
            xAxis: {
                categories: ['<?= implode("','", $monthx); //นำตัวแปร array แกน x มาใส่ ในที่นี้คือ เดือน?>']
            },
            yAxis: {
                title: {
                    text: 'จำนวนลูกค้า (ราย)'
                }
            },
            tooltip: {
                enabled: false,
                formatter: function() {
                    return '<b>'+ this.series.name +'</b><br/>'+
                        this.x +': '+ this.y +'ราย';
                }
            },
   legend: {
                            layout: 'vertical',
                            align: 'right',
                            verticalAlign: 'top',
                            x: -10,
                            y: 100,
                            borderWidth: 0
            },
            plotOptions: {
                line: {
                    dataLabels: {
                        enabled: true
                    },
                    enableMouseTracking: false
                }
            },
            series: [{
                                name: 'พ.ศ.2556',
                                data: [<?= implode(',', $y2556) // ข้อมูล array แกน y ?>]
                            }]
        });
    });
        </script>
    </head>
    <body>
      <div id="container" style="min-width: 320px; height: 380px; margin: 0 auto"></div>      
    </body>
</html>


(บรรทัดที่ Error คือ บรรทัดที่ 9 กับ 10)

Warning: mysqli_query() expects at least 2 parameters, 1 given in C:\xampp\htdocs\line.php on line 9
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, null given in C:\xampp\htdocs\line.php on line 10
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่