0
 <?php
date_default_timezone_set("America/New_York");
require("db_vars.php");

  // Connect to the database
  $dbc = mysqli_connect($db_hostname, $db_database, $db_username, $db_password);


  // Custom function to draw a bar graph given a data set, maximum value, and image filename
  function draw_bar_graph($width, $height, $data, $max_value, $filename) {
    // Create the empty graph image
    $img = imagecreatetruecolor($width, $height);

    // Set a white background with black text and gray graphics

    $bg_color = imagecolorallocate($img, 255, 255, 255);       // white

    $text_color = imagecolorallocate($img, 255, 255, 255);     // white

    $bar_color = imagecolorallocate($img, 0, 0, 0);            // black
    $border_color = imagecolorallocate($img, 192, 192, 192);   // light gray

    // Fill the background
    imagefilledrectangle($img, 0, 0, $width, $height, $bg_color);

    // Draw the bars
    $bar_width = $width / ((count($data) * 2) + 1);
    for ($i = 0; $i < count($data); $i++) {
      imagefilledrectangle($img, ($i * $bar_width * 2) + $bar_width, $height,
        ($i * $bar_width * 2) + ($bar_width * 2), $height - (($height / $max_value) * $data[$i][1]), $bar_color);
      imagestringup($img, 5, ($i * $bar_width * 2) + ($bar_width), $height - 5, $data[$i][0], $text_color);
    }

    // Draw a rectangle around the whole thing
    imagerectangle($img, 0, 0, $width - 1, $height - 1, $border_color);

    // Draw the range up the left side of the graph
    for ($i = 1; $i <= $max_value; $i++) {
      imagestring($img, 5, 0, $height - ($i * ($height / $max_value)), $i, $bar_color);
    }

    // Write the graph image to a file
    imagepng($img, $filename, 5);

    imagedestroy($img);
  } // End of draw_bar_graph() function

 // if (mysqli_num_rows($data) != 0) {
    // First grab the user's responses from the response table (JOIN to get the topic and category names)
   $query = "SELECT ts.species_name, COUNT(ti.species_id)  " .
      "FROM tree_species ts " .
      "INNER JOIN tree_individuals ti ON ts.species_id = ti.species_id " .
      "GROUP BY ts.species_name'";
    $data = mysqli_query($dbc, $query);
    $tree_totals = array();
    while ($row = mysqli_fetch_array($data)) {
      array_push($tree_totals, $row);
    }

        // Generate and display the mismatched category bar graph image
        echo '<h4>Mismatched category breakdown:</h4>';
        draw_bar_graph(480, 240, $tree_totals, 5, 'treetotalgraph.png');
        echo '<img src="treetotalgraph.png" alt="Tree total graph" /><br />';
//}

mysqli_close($dbc);
?>

次のエラーの生成

警告: mysqli_query() は、パラメーター 1 が mysqli であることを想定しています。これは、54 行目の G:\Students\test.php で指定されたブール値です。

警告: mysqli_fetch_array() は、パラメーター 1 が mysqli_result であると想定します。56 行目の G:\Students\test.php に null が指定されています

不一致のカテゴリの内訳:

警告: imagepng() [function.imagepng]: 'treetotalgraph.png' を書き込み用に開くことができません: G:\Students\test.php 行 43 で許可が拒否されました

警告: mysqli_close() は、パラメーター 1 が mysqli であることを想定しています。これは、68 行目の G:\Students\test.php で指定されたブール値です。

4

1 に答える 1

2

まさにそれが言っていること:タイムゾーンを明示的に設定していないか、php.ini ファイルに設定されていません。

これをコードの先頭に追加します。

date_default_timezone_set("America/New_York");
于 2012-12-10T05:11:27.110 に答える