pchartが提供する例に基づいてチャートを生成しようとしています。これが私のコードです:
<?php
/* Include the pData class */
include("pchart/class/pData.class.php");
/* Create the pData object */
$myData = new pData();
/* Connect to the MySQL database */
$db = mysql_connect("webhost", "user", "pass");
mysql_select_db("database",$db);
/* Build the query that will returns the data to graph */
$Requete = "SELECT * FROM `replies` WHERE `field` LIKE CONCAT ('%', Do you an interest in Green IT, '%')";
$Result = mysql_query($Requete,$db);
$Yes=""; $No=""; $Undecided="";
while($row = mysql_fetch_array($Result));
{
/* Push the results of the query in an array */
$Yes[] = $row["Yes"];
$No[] = $row["No"];
$Undecided[] = $row["Undecided"];
}
/* Save the data in the pData array */
$myData->addPoints($Yes,"Yes");
$myData->addPoints($No,"No");
$myData->addPoints($Undecided,"Undecided");
?>
私が得ているエラーはこれです:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/a4728588/public_html/charts.php on line 30
これは次のことを示しています。
while($row = mysql_fetch_array($Result));
チャートが生成されるようにこれを修正する方法についてのアイデアはありますか?
前もって感謝します