>데이터 베이스 >MySQL 튜토리얼 >PHP와 JSON을 사용하여 MySQL 데이터에서 Google 차트를 생성하려면 어떻게 해야 합니까?

PHP와 JSON을 사용하여 MySQL 데이터에서 Google 차트를 생성하려면 어떻게 해야 합니까?

Barbara Streisand
Barbara Streisand원래의
2024-12-05 01:20:11787검색

How Can I Generate a Google Chart from MySQL Data Using PHP and JSON?

PHP-MySQL Google 차트 JSON: 전체 가이드

문제:

MySQL 테이블 데이터를 데이터 소스로 사용하는 Google 차트는 특히 작업할 때 어려울 수 있습니다. PHP.

해결책:

다음은 PHP, MySQL 및 JSON을 사용하여 MySQL에 저장된 데이터에서 원형 차트를 만드는 방법을 보여주는 포괄적인 예입니다.

사용:

  • 요구사항: PHP, Apache, MySQL
  • 설치:

    • 다음 위치에 "차트" 데이터베이스 만들기 phpMyAdmin.
    • "weekly_task"와 "percentage"라는 두 개의 열이 있는 "googlechart" 테이블을 만듭니다.
    • 퍼센트에 대한 숫자 값이 있는 테이블에 데이터를 삽입합니다.

PHP-MySQL-JSON-구글 차트 예:

<?php
// Connect to MySQL
$con = mysql_connect("localhost", "Username", "Password") or die("Failed to connect!");
mysql_select_db("Database Name", $con);

// Query the "googlechart" table
$sth = mysql_query("SELECT * FROM googlechart");

// Create a JSON table for Google Chart
$table = array(
    'cols' => array(
        array('label' => 'Weekly Task', 'type' => 'string'),
        array('label' => 'Percentage', 'type' => 'number')
    ),
    'rows' => array()
);

// Populate the JSON table with data
while ($r = mysql_fetch_assoc($sth)) {
    $rows[] = array('c' => array(
        array('v' => (string) $r['Weekly_task']),
        array('v' => (int) $r['percentage'])
    ));
}
$table['rows'] = $rows;
$jsonTable = json_encode($table);

// Include necessary scripts and draw the chart
?>

<html>
<head>
    <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">
        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>

참고: 다른 유형의 차트(예: 막대형 차트)의 경우 코드를 약간 수정해야 할 수도 있습니다.

PHP-PDO-JSON-MySQL-Google 차트 예 (대체):

예외 처리 및 유연성 향상을 위해 PDO(PHP 데이터 개체) 확장을 활용합니다.

PHP-MySQLi-JSON-Google 차트 예(대체) :

준비와 같은 추가 기능을 위해 MySQLi 확장을 활용합니다.

짧은 태그 구문 오류:

짧은 태그(예: "".

위 내용은 PHP와 JSON을 사용하여 MySQL 데이터에서 Google 차트를 생성하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.