PHP MySQL Google แผนภูมิ JSON - ตัวอย่างสมบูรณ์


144

ฉันค้นหามากเพื่อหาตัวอย่างที่ดีสำหรับการสร้าง Google Chart โดยใช้ข้อมูลตาราง MySQL เป็นแหล่งข้อมูล ฉันค้นหาสองสามวันและรู้ว่ามีบางตัวอย่างที่สามารถสร้าง Google Chart (พาย, บาร์, คอลัมน์, ตาราง) โดยใช้ PHP และ MySQL ร่วมกัน ในที่สุดฉันก็สามารถทำให้ตัวอย่างทำงานได้

ก่อนหน้านี้ฉันได้รับความช่วยเหลือมากมายจาก StackOverflow ดังนั้นเวลานี้ฉันจะส่งคืน

ฉันมีสองตัวอย่าง; หนึ่งใช้ Ajax และอื่น ๆ ไม่ได้ วันนี้ฉันจะแสดงเฉพาะตัวอย่างที่ไม่ใช่อาแจ็กซ์

การใช้งาน:

    ต้องการ: PHP, Apache และ MySQL

    การติดตั้ง:

      --- สร้างฐานข้อมูลโดยใช้ phpMyAdmin และตั้งชื่อว่า "แผนภูมิ"
      --- สร้างตารางโดยใช้ phpMyAdmin และตั้งชื่อว่า "googlechart" และสร้าง 
          ตารางแน่ใจว่ามีสองคอลัมน์เท่านั้นเนื่องจากฉันใช้สองคอลัมน์ อย่างไรก็ตาม
          คุณสามารถใช้มากกว่า 2 คอลัมน์ได้หากต้องการ แต่คุณต้องเปลี่ยน 
          รหัสเล็กน้อยสำหรับการที่
      --- ระบุชื่อคอลัมน์ดังนี้: "Week_task" และ "เปอร์เซนต์"
      --- ใส่ข้อมูลลงในตาราง
      --- สำหรับคอลัมน์เปอร์เซ็นต์ใช้ตัวเลขเท่านั้น

          ---------------------------------
          ข้อมูลตัวอย่าง: ตาราง (googlechart)
          ---------------------------------

          เปอร์เซนต์
          ----------- ----------
          นอน 30
          ดูหนัง 10
          งาน 40
          แบบฝึกหัดที่ 20    


PHP-MySQL-JSON-Google ตัวอย่างแผนภูมิ:

    <?php
$con=mysql_connect("localhost","Username","Password") or die("Failed to connect with database!!!!");
mysql_select_db("Database Name", $con); 
// The Chart table contains two fields: weekly_task and percentage
// This example will display a pie chart. If you need other charts such as a Bar chart, you will need to modify the code a little to make it work with bar chart and other charts
$sth = mysql_query("SELECT * FROM chart");

/*
---------------------------
example data: Table (Chart)
--------------------------
weekly_task     percentage
Sleep           30
Watching Movie  40
work            44
*/

//flag is not needed
$flag = true;
$table = array();
$table['cols'] = array(

    // Labels for your chart, these represent the column titles
    // Note that one column is in "string" format and another one is in "number" format as pie chart only required "numbers" for calculating percentage and string will be used for column title
    array('label' => 'Weekly Task', 'type' => 'string'),
    array('label' => 'Percentage', 'type' => 'number')

);

$rows = array();
while($r = mysql_fetch_assoc($sth)) {
    $temp = array();
    // the following line will be used to slice the Pie chart
    $temp[] = array('v' => (string) $r['Weekly_task']); 

    // Values of each slice
    $temp[] = array('v' => (int) $r['percentage']); 
    $rows[] = array('c' => $temp);
}

$table['rows'] = $rows;
$jsonTable = json_encode($table);
//echo $jsonTable;
?>

<html>
  <head>
    <!--Load the Ajax API-->
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script type="text/javascript">

    // Load the Visualization API and the piechart package.
    google.load('visualization', '1', {'packages':['corechart']});

    // Set a callback to run when the Google Visualization API is loaded.
    google.setOnLoadCallback(drawChart);

    function drawChart() {

      // Create our data table out of JSON data loaded from server.
      var data = new google.visualization.DataTable(<?=$jsonTable?>);
      var options = {
           title: 'My Weekly Plan',
          is3D: 'true',
          width: 800,
          height: 600
        };
      // Instantiate and draw our chart, passing in some options.
      // Do not forget to check your div ID
      var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
      chart.draw(data, options);
    }
    </script>
  </head>

  <body>
    <!--this is the div that will hold the pie chart-->
    <div id="chart_div"></div>
  </body>
</html>


PHP-PDO-JSON-MySQL-Google ตัวอย่างแผนภูมิ:

<?php
    /*
    Script  : PHP-PDO-JSON-mysql-googlechart
    Author  : Enam Hossain
    version : 1.0

    */

    /*
    --------------------------------------------------------------------
    Usage:
    --------------------------------------------------------------------

    Requirements: PHP, Apache and MySQL

    Installation:

      --- Create a database by using phpMyAdmin and name it "chart"
      --- Create a table by using phpMyAdmin and name it "googlechart" and make sure table has only two columns as I have used two columns. However, you can use more than 2 columns if you like but you have to change the code a little bit for that
      --- Specify column names as follows: "weekly_task" and "percentage"
      --- Insert some data into the table
      --- For the percentage column only use a number

          ---------------------------------
          example data: Table (googlechart)
          ---------------------------------

          weekly_task     percentage
          -----------     ----------

          Sleep           30
          Watching Movie  10
          job             40
          Exercise        20     


    */

    /* Your Database Name */
    $dbname = 'chart';

    /* Your Database User Name and Passowrd */
    $username = 'root';
    $password = '123456';

    try {
      /* Establish the database connection */
      $conn = new PDO("mysql:host=localhost;dbname=$dbname", $username, $password);
      $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

      /* select all the weekly tasks from the table googlechart */
      $result = $conn->query('SELECT * FROM googlechart');

      /*
          ---------------------------
          example data: Table (googlechart)
          --------------------------
          weekly_task     percentage
          Sleep           30
          Watching Movie  10
          job             40
          Exercise        20       
      */



      $rows = array();
      $table = array();
      $table['cols'] = array(

        // Labels for your chart, these represent the column titles.
        /* 
            note that one column is in "string" format and another one is in "number" format 
            as pie chart only required "numbers" for calculating percentage 
            and string will be used for Slice title
        */

        array('label' => 'Weekly Task', 'type' => 'string'),
        array('label' => 'Percentage', 'type' => 'number')

    );
        /* Extract the information from $result */
        foreach($result as $r) {

          $temp = array();

          // the following line will be used to slice the Pie chart

          $temp[] = array('v' => (string) $r['weekly_task']); 

          // Values of each slice

          $temp[] = array('v' => (int) $r['percentage']); 
          $rows[] = array('c' => $temp);
        }

    $table['rows'] = $rows;

    // convert data into JSON format
    $jsonTable = json_encode($table);
    //echo $jsonTable;
    } catch(PDOException $e) {
        echo 'ERROR: ' . $e->getMessage();
    }

    ?>


    <html>
      <head>
        <!--Load the Ajax API-->
        <script type="text/javascript" src="https://www.google.com/jsapi"></script>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
        <script type="text/javascript">

        // Load the Visualization API and the piechart package.
        google.load('visualization', '1', {'packages':['corechart']});

        // Set a callback to run when the Google Visualization API is loaded.
        google.setOnLoadCallback(drawChart);

        function drawChart() {

          // Create our data table out of JSON data loaded from server.
          var data = new google.visualization.DataTable(<?=$jsonTable?>);
          var options = {
               title: 'My Weekly Plan',
              is3D: 'true',
              width: 800,
              height: 600
            };
          // Instantiate and draw our chart, passing in some options.
          // Do not forget to check your div ID
          var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
          chart.draw(data, options);
        }
        </script>
      </head>

      <body>
        <!--this is the div that will hold the pie chart-->
        <div id="chart_div"></div>
      </body>
    </html>


PHP-MySQLi-JSON-Google ตัวอย่างแผนภูมิ

<?php
/*
Script  : PHP-JSON-MySQLi-GoogleChart
Author  : Enam Hossain
version : 1.0

*/

/*
--------------------------------------------------------------------
Usage:
--------------------------------------------------------------------

Requirements: PHP, Apache and MySQL

Installation:

  --- Create a database by using phpMyAdmin and name it "chart"
  --- Create a table by using phpMyAdmin and name it "googlechart" and make sure table has only two columns as I have used two columns. However, you can use more than 2 columns if you like but you have to change the code a little bit for that
  --- Specify column names as follows: "weekly_task" and "percentage"
  --- Insert some data into the table
  --- For the percentage column only use a number

      ---------------------------------
      example data: Table (googlechart)
      ---------------------------------

      weekly_task     percentage
      -----------     ----------

      Sleep           30
      Watching Movie  10
      job             40
      Exercise        20     


*/

/* Your Database Name */

$DB_NAME = 'chart';

/* Database Host */
$DB_HOST = 'localhost';

/* Your Database User Name and Passowrd */
$DB_USER = 'root';
$DB_PASS = '123456';





  /* Establish the database connection */
  $mysqli = new mysqli($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME);

  if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
  }

   /* select all the weekly tasks from the table googlechart */
  $result = $mysqli->query('SELECT * FROM googlechart');

  /*
      ---------------------------
      example data: Table (googlechart)
      --------------------------
      Weekly_Task     percentage
      Sleep           30
      Watching Movie  10
      job             40
      Exercise        20       
  */



  $rows = array();
  $table = array();
  $table['cols'] = array(

    // Labels for your chart, these represent the column titles.
    /* 
        note that one column is in "string" format and another one is in "number" format 
        as pie chart only required "numbers" for calculating percentage 
        and string will be used for Slice title
    */

    array('label' => 'Weekly Task', 'type' => 'string'),
    array('label' => 'Percentage', 'type' => 'number')

);
    /* Extract the information from $result */
    foreach($result as $r) {

      $temp = array();

      // The following line will be used to slice the Pie chart

      $temp[] = array('v' => (string) $r['weekly_task']); 

      // Values of the each slice

      $temp[] = array('v' => (int) $r['percentage']); 
      $rows[] = array('c' => $temp);
    }

$table['rows'] = $rows;

// convert data into JSON format
$jsonTable = json_encode($table);
//echo $jsonTable;


?>


<html>
  <head>
    <!--Load the Ajax API-->
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script type="text/javascript">

    // Load the Visualization API and the piechart package.
    google.load('visualization', '1', {'packages':['corechart']});

    // Set a callback to run when the Google Visualization API is loaded.
    google.setOnLoadCallback(drawChart);

    function drawChart() {

      // Create our data table out of JSON data loaded from server.
      var data = new google.visualization.DataTable(<?=$jsonTable?>);
      var options = {
           title: 'My Weekly Plan',
          is3D: 'true',
          width: 800,
          height: 600
        };
      // Instantiate and draw our chart, passing in some options.
      // Do not forget to check your div ID
      var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
      chart.draw(data, options);
    }
    </script>
  </head>

  <body>
    <!--this is the div that will hold the pie chart-->
    <div id="chart_div"></div>
  </body>
</html>

13
กรุณาอย่าใช้mysql_*ฟังก์ชั่นในรหัสใหม่ พวกเขาจะไม่เก็บรักษาไว้และมีการยกเลิกอย่างเป็นทางการ เห็นกล่องสีแดง ? เรียนรู้เกี่ยวกับงบที่เตรียมไว้และใช้ PDOหรือ MySQLi -บทความนี้จะช่วยให้คุณตัดสินใจได้ว่า หากคุณเลือกที่ PDO,นี่คือการสอนที่ดี
thaJeztah

4
ไม่ควรที่จะวางตัวอย่างเป็นคำตอบที่ดีกว่า
Carlos Campderrós

นี่ไม่ใช่คำถาม แต่เป็นคำตอบที่มีประโยชน์มาก
Ömer

ฉัน +1 แต่นี่จะมีประโยชน์มากขึ้นถ้าคุณย้ายตัวอย่างไปยังคำตอบและยอมรับมัน
Brick

1
ฉันลงคะแนนให้ปิดคำถามนี้เป็นนอกหัวข้อเพราะไม่ใช่คำถาม แต่เป็นแบบฝึกหัด มันไม่ได้ให้ยืมตัวเองกับการได้รับคำตอบและแบบจำลองพฤติกรรมการโพสต์เนื้อหาที่ไม่ถูกต้อง
mickmackusa

คำตอบ:


9

บางคนอาจพบข้อผิดพลาดนี้ทั้งในพื้นที่หรือบนเซิร์ฟเวอร์:

syntax error var data = new google.visualization.DataTable(<?=$jsonTable?>);

ซึ่งหมายความว่าสภาพแวดล้อมของพวกเขาไม่สนับสนุนแท็กสั้น ๆ โซลูชันคือการใช้สิ่งนี้แทน:

<?php echo $jsonTable; ?>

และทุกอย่างจะทำงานได้ดี!


4

คุณสามารถทำสิ่งนี้ได้ง่ายขึ้น และผลงาน 100% ที่คุณต้องการ

<?php
    $servername = "localhost";
    $username = "root";
    $password = "";  //your database password
    $dbname = "demo";  //your database name

    $con = new mysqli($servername, $username, $password, $dbname);

    if ($con->connect_error) {
        die("Connection failed: " . $con->connect_error);
    }
    else
    {
        //echo ("Connect Successfully");
    }
    $query = "SELECT Date_time, Tempout FROM alarm_value"; // select column
    $aresult = $con->query($query);

?>

<!DOCTYPE html>
<html>
<head>
    <title>Massive Electronics</title>
    <script type="text/javascript" src="loder.js"></script>
    <script type="text/javascript">
        google.charts.load('current', {'packages':['corechart']});

        google.charts.setOnLoadCallback(drawChart);
        function drawChart(){
            var data = new google.visualization.DataTable();
            var data = google.visualization.arrayToDataTable([
                ['Date_time','Tempout'],
                <?php
                    while($row = mysqli_fetch_assoc($aresult)){
                        echo "['".$row["Date_time"]."', ".$row["Tempout"]."],";
                    }
                ?>
               ]);

            var options = {
                title: 'Date_time Vs Room Out Temp',
                curveType: 'function',
                legend: { position: 'bottom' }
            };

            var chart = new google.visualization.AreaChart(document.getElementById('areachart'));
            chart.draw(data, options);
        }

    </script>
</head>
<body>
     <div id="areachart" style="width: 900px; height: 400px"></div>
</body>
</html>

ลิงก์loder.jsที่นี่loder.js


นี่เป็นรหัสเต็มหรือไม่ loder.js คืออะไร ฉันไม่สามารถทำงานได้
สูงสุด

มันใช้งานได้ 100% สำหรับฉัน ปัญหาของคุณอยู่ที่ไหน ข้อมูลรวบรวมจากฐานข้อมูลและสร้างแผนภูมิข้อมูล
AA Noman

ฉันสร้างไฟล์ php ด้วยรหัสของคุณทำการเชื่อมต่อฐานข้อมูลและเปลี่ยนชื่อเขตข้อมูลตารางเป็นต้นซึ่งจะแสดงหน้าว่าง ฉันไม่มี loder.js ฉันจะหาได้ที่ไหน มันอาจเป็นปัญหา
สูงสุด

ขอบคุณมาก! มันใช้งานได้แล้ว คุณช่วยบอกวิธีปรับแต่งโต๊ะได้มั้ย ฉันจะหาข้อมูลเกี่ยวกับสิ่งนี้ได้จากที่ไหน? เพราะฉันมีช่วงข้อมูลที่ยาวนานกราฟมีขนาดเล็กและหนาแน่นมาก
Max

1
ตามลิงค์นี้developers.google.com/chart/interactive/docs/quick_start อาจเป็นประโยชน์สำหรับคุณ หากคุณปรับแต่งตารางของคุณเพียงแค่แก้ไข$query = "SELECT Date_time, Tempout FROM alarm_value"; // select columnสิ่งนี้
AA Noman

1

ใช้สิ่งนี้มันใช้งานได้จริง:

data.addColumn ไม่มีคีย์ของคุณคุณสามารถเพิ่มคอลัมน์หรือลบได้

<?php
$con=mysql_connect("localhost","USername","Password") or die("Failed to connect with database!!!!");
mysql_select_db("Database Name", $con); 
// The Chart table contain two fields: Weekly_task and percentage
//this example will display a pie chart.if u need other charts such as Bar chart, u will need to change little bit to make work with bar chart and others charts
$sth = mysql_query("SELECT * FROM chart");

while($r = mysql_fetch_assoc($sth)) {
$arr2=array_keys($r);
$arr1=array_values($r);

}

for($i=0;$i<count($arr1);$i++)
{
    $chart_array[$i]=array((string)$arr2[$i],intval($arr1[$i]));
}
echo "<pre>";
$data=json_encode($chart_array);
?>

<html>
  <head>
    <!--Load the AJAX API-->
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script type="text/javascript">

    // Load the Visualization API and the piechart package.
    google.load('visualization', '1', {'packages':['corechart']});

    // Set a callback to run when the Google Visualization API is loaded.
    google.setOnLoadCallback(drawChart);

    function drawChart() {

      // Create our data table out of JSON data loaded from server.
     var data = new google.visualization.DataTable();
        data.addColumn("string", "YEAR");
        data.addColumn("number", "NO of record");

        data.addRows(<?php $data ?>);

        ]); 
      var options = {
           title: 'My Weekly Plan',
          is3D: 'true',
          width: 800,
          height: 600
        };
      // Instantiate and draw our chart, passing in some options.
      //do not forget to check ur div ID
      var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
      chart.draw(data, options);
    }
    </script>
  </head>

  <body>
    <!--Div that will hold the pie chart-->
    <div id="chart_div"></div>
  </body>
</html>

API "mysql" รุ่นเก่า (รวมถึง mysql_connect และฟังก์ชั่นที่เกี่ยวข้อง) เลิกใช้แล้วและไม่แนะนำให้ใช้ในรหัสใหม่ ขอแนะนำให้ใช้ PDO หรือ MySQLi API ที่ใหม่กว่าแทน ดูphp.net/manual/en/function.mysql-connect.php , php.net/manual/en/mysqlinfo.api.choosing.phpและphp.net/manual/en/…สำหรับรายละเอียดเพิ่มเติม
Squig

0

บางคนอาจพบข้อผิดพลาดนี้ (ฉันได้รับขณะใช้งานตัวอย่างแผนภูมิ PHP-MySQLi-JSON-Google ):

คุณเรียกใช้วิธีการ draw () ด้วยชนิดข้อมูลที่ไม่ถูกต้องแทนที่จะเป็น DataTable หรือ DataView

วิธีแก้ปัญหาคือ: แทนที่ jsapi และเพียงแค่ใช้ loader.js ด้วย:

google.charts.load('current', {packages: ['corechart']}) and 
google.charts.setOnLoadCallback 

- ตามบันทึกประจำรุ่น -> เวอร์ชันของ Google Charts ที่ยังคงมีให้บริการผ่านโหลดเดอร์ jsapi นั้นไม่ได้รับการปรับปรุงอย่างต่อเนื่อง โปรดใช้ตัวโหลด gstatic ใหม่จากนี้เป็นต้นไป

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.