PHP MySQL Google चार्ट JSON - पूर्ण उदाहरण


144

मैंने डेटा स्रोत के रूप में MySQL टेबल डेटा का उपयोग करके Google चार्ट बनाने के लिए एक अच्छा उदाहरण खोजने के लिए बहुत खोज की है। मैंने कुछ दिनों तक खोज की और महसूस किया कि PHP और MySQL के संयोजन का उपयोग करके Google चार्ट (पाई, बार, कॉलम, टेबल) बनाने के लिए कुछ उदाहरण उपलब्ध हैं। मैं आखिरकार एक उदाहरण काम करने में कामयाब रहा।

मुझे पहले StackOverflow से बहुत मदद मिली है, इसलिए इस बार मैं कुछ वापस करूँगा।

मेरे दो उदाहरण हैं; एक अजाक्स का उपयोग करता है और दूसरा नहीं करता है। आज, मैं केवल गैर-अजाक्स उदाहरण दिखाऊंगा।

उपयोग:

    आवश्यकताएँ: PHP, Apache और MySQL

    स्थापना:

      --- phpMyAdmin का उपयोग करके एक डेटाबेस बनाएं और इसे "चार्ट" नाम दें
      --- phpMyAdmin का उपयोग करके एक तालिका बनाएं और इसे "googlechart" नाम दें और बनाएं 
          सुनिश्चित करें कि तालिका में केवल दो कॉलम हैं क्योंकि मैंने दो कॉलम का उपयोग किया है। तथापि,
          यदि आप चाहें तो आप 2 से अधिक कॉलम का उपयोग कर सकते हैं लेकिन आपको इसे बदलना होगा 
          उसके लिए थोड़ा कोड
      --- स्तम्भ के नाम निर्दिष्ट करें: "साप्ताहिक_तक" और "प्रतिशत"
      --- तालिका में कुछ डेटा डालें
      --- प्रतिशत कॉलम के लिए केवल एक संख्या का उपयोग करें

          ---------------------------------
          उदाहरण डेटा: टेबल (googlechart)
          ---------------------------------

          साप्ताहिक_तक प्रतिशत
          ----------- ----------
          नींद ३०
          फिल्म 10 देखना
          नौकरी ४०
          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 का उपयोग करें- यह लेख आपको यह तय करने में मदद करेगा कि कौन सा। यदि आप पीडीओ चुनते हैं, तो यहां एक अच्छा ट्यूटोरियल है
thaJeztah

4
उदाहरणों को उत्तरों के रूप में रखना बेहतर नहीं होना चाहिए?
कार्लोस कैंपड्रोस

यह एक सवाल नहीं है, बल्कि एक बहुत उपयोगी उत्तर है।
.मर एन

मैं +1 हूं, लेकिन यह वास्तव में अधिक उपयोगी होगा यदि आप उदाहरणों को उत्तर में ले जाते हैं और स्वीकार करते हैं।
ईंट

1
मैं इस प्रश्न को ऑफ-टॉपिक के रूप में बंद करने के लिए मतदान कर रहा हूं क्योंकि यह प्रश्न नहीं है, बल्कि एक ट्यूटोरियल है। यह खुद को जवाब देने के लिए उधार नहीं देता है और रोल मॉडल गलत सामग्री पोस्टिंग व्यवहार करता है।
मिकमैकुसा

जवाबों:


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


क्या यह पूरा कोड है? लॉयर क्या है? मैं इसे काम नहीं कर सका।
अधिकतम

यह मेरे लिए 100% काम करता है। आपकी समस्या कहाँ है? डेटा डेटाबेस से इकट्ठा होता है और उस डेटा को चार्ट बनाता है।
एए नोमान

मैंने आपके कोड के साथ एक php फाइल बनाई, db कनेक्शन बनाया, और टेबल फील्ड के नाम आदि को बदला। यह खाली पेज दिखाता है। मेरे पास loder.js नहीं है। यह मुझे कहाँ मिल सकता है? यह समस्या हो सकती है।
अधिकतम

आपका बहुत बहुत धन्यवाद! यह अब काम करता है। क्या आप मुझे बता सकते हैं कि टेबल को कैसे अनुकूलित किया जाए? मुझे इस बारे में जानकारी कहां मिल सकती है? क्योंकि मेरे पास एक लंबी डेटा रेंज है, ग्राफ़ बहुत छोटा और घना है।
अधिकतम

1
इस लिंक को फॉलो करें डेवलपर्स। http: //www.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>

पुराने "mysql" API (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/... अधिक जानकारी के लिए।
स्क्वीग

0

कुछ इस त्रुटि का सामना कर सकते हैं ( PHP-MySQLi-JSON-Google चार्ट उदाहरण को लागू करते समय मुझे यह मिला ):

आपने DataTable या DataView के बजाय गलत प्रकार के डेटा के साथ ड्रा () विधि को बुलाया।

इसका समाधान यह होगा: जेसीपी को बदलें और बस लोडर का उपयोग करें। जेएस:

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

- जारी नोटों के अनुसार -> jsapi लोडर के माध्यम से उपलब्ध रहने वाले Google चार्ट का संस्करण अब लगातार अपडेट नहीं किया जा रहा है। कृपया अब से नए gstatic लोडर का उपयोग करें।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.