<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TestPHP</title>
<?php
include("FusionCharts/FusionCharts.php");
include ("Function/connectSQL.php");
include ("Function/Get_BudgetYear.php");
?>
</head>
<body>
<?php
// $strXML .= "<chart caption='test oHm' xAxisName='XX' yAxisName='YY' showValues='0' formatNumberScale='0' showBorder='1'>"; $query = "SELECT Type, Budget_year, Status
FROM dbo.IT_Material
WHERE (Status = 'ใช้งาน' OR
Status = 'ผู้ใช้งานยืม' OR
Status = 'รอตรวจสอบ' OR
Status = 'สำรอง') AND (Type = 'Desktop')";
$result = odbc_exec($cid,$query);
while ($row = odbc_fetch_array($result)) {
echo $row["Type"].",".$row["Budget_year"].",".$row["Status"]."<BR>";
} ?>
</body>
</html>
SELECT Type, Budget_year, Status
FROM dbo.IT_Material
WHERE (Status = N'ใช้งาน' OR
Status = N'ผู้ใช้งานยืม' OR
Status = N'รอตรวจสอบ' OR
Status = N'สำรอง') AND (Type = 'Desktop')";
ลองเติม N ข้างหน้าเพื่อ CAST เป็น NVARCHAR ดูค่ะ
ว่ากันตามหลัก field status ควรแยกออกไปเป็นอีก table นึงนะคะ