この記事では、MySQL を使用して Google チャートを生成するための詳細なガイドについて説明します。テーブルデータをデータソースとして使用します。理解を容易にするために、主に Ajax 以外の例に焦点を当てます。
始める前に、次のものが揃っていることを確認してください。前提条件:
次の列を持つ「googlechart」という名前のテーブルを作成します:
<?php // Connect to the database $con = mysql_connect("localhost", "username", "password"); mysql_select_db("chart", $con); // Query the "googlechart" table $sth = mysql_query("SELECT * FROM googlechart"); // Initialize the data table $table = array(); $table['cols'] = array( // Column labels array('label' => 'Weekly Task', 'type' => 'string'), array('label' => 'Percentage', 'type' => 'number') ); // Populate the table with data from the query result $rows = array(); while ($r = mysql_fetch_assoc($sth)) { $temp = array(); $temp[] = array('v' => $r['weekly_task']); $temp[] = array('v' => $r['percentage']); $rows[] = array('c' => $temp); } $table['rows'] = $rows; // Convert the table data to JSON format $jsonTable = json_encode($table); ?>
<html> <head> <script src="https://www.google.com/jsapi"></script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> <script> google.load('visualization', '1', {'packages':['corechart']}); google.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(<?php echo $jsonTable; ?>); var options = { title: 'My Weekly Plan', is3D: true, width: 800, height: 600 }; var chart = new google.visualization.PieChart(document.getElementById('chart_div')); chart.draw(data, options); } </script> </head> <body> <div>
短いタグ (=) の使用中にエラーが発生する可能性があります:
syntax error var data = new google.visualization.DataTable(<?php echo $jsonTable; ?>);
これを解決するには、次の構文を使用します代わりに:
<?php echo $jsonTable; ?>
これで、PHP、MySQL、JSON を使用してデータベース データから Google チャートを作成する方法を包括的に理解できました。
以上がPHP と JSON を使用して MySQL データから Google チャートを作成するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。