首页 > 数据库 > mysql教程 > 如何使用 PHP、MySQL 和 Google Charts API 生成图表?

如何使用 PHP、MySQL 和 Google Charts API 生成图表?

Patricia Arquette
发布: 2024-12-06 03:44:15
原创
279 人浏览过

How to Generate Charts using PHP, MySQL, and the Google Charts API?

PHP MySQL Google Chart JSON - 完整的示例

此示例向你展示如何使用 PHP、MySQL 和 Google Chart API 生成图表。

先决条件:

  • PHP、Apache 和 MySQL

数据库设置:

  1. 使用 phpMyAdmin 创建一个名为 "chart" 的数据库。
  2. 创建一个名为 "googlechart" 的表,并确保其至少包含两列。例如:weekly_task 和 percentage。
  3. 向表中插入一些数据,其中 percentage 列仅包含数字。

PHP-MySQL-JSON-Google Chart 示例:

$con = mysqli_connect("localhost", "Username", "Password") or die("Failed to connect with database!!!!");
mysqli_select_db("Database Name", $con);

$result = mysqli_query($con, "SELECT * FROM googlechart");

$rows = array();
$table = array();
$table['cols'] = array(
    array('label' => 'Weekly Task', 'type' => 'string'),
    array('label' => 'Percentage', 'type' => 'number')
);

while ($row = mysqli_fetch_assoc($result)) {
    $temp = array();
    $temp[] = array('v' => (string) $row['weekly_task']);
    $temp[] = array('v' => (int) $row['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(<?php echo $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>
登录后复制

简短标签语法引起的错误:

一些用户可能会在本地或服务器上遇到此错误:

syntax error var data = new google.visualization.DataTable(<?php echo $jsonTable; ?>);
登录后复制

这意味着其环境不支持短标签。解决方法是改用以下语法:

<?php echo $jsonTable; ?>
登录后复制

一切应该都可以正常工作了。

以上是如何使用 PHP、MySQL 和 Google Charts API 生成图表?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板