이 기사에서는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!