มันผิดอะไรหรอครับ ผมแก้ไม่ได้สักที ช่วยดูให้ผมทีครับ
มันขึ้น error อะครับไม่ทราบว่า error เพราะอะไรหรือเกี่ยวกับ ฐานข้อมูลผมครับ
Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression., SQL state 22005 in SQLExecDirect in C:\xampp\htdocs\Shopping_Cart.php on line 69
Warning: odbc_fetch_row() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\Shopping_Cart.php on line 70
ฐานข้อมูลครับ
DB
ตาราง Product
ProductID
id
ProductName
ProductPrice
ProductDetail
amount
Productimh
ตาราง ProductType
id
ProductType
ตาราง Shopping_Cart
id
SumPrice
ตาราง Shopping_Cart2
id
idshopping
ProductID
amount
Code PHP ครับ
Code (PHP)
<!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>
<link href="css/global.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/style.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<ul id="nav" class="clearfix">
<li><a href="index.html">หน้าแรก</a> </li>
<li><a href="About_us.html">เกี่ยวกับเรา</a> </li>
<li><a href="Contact_us.html">ติดต่อเรา</a> </li>
<li><a href="Payment.html">ชำระเงิน</a> </li>
</ul>
<div id="col_main_cart" class="bucket clearfix">
<table class="cart">
<tbody>
<tr class="title_table">
<td class="cart_item">สินค้า</td>
<td class="cart_name"></td>
<td class="cart_price01">ราคา(฿)</td>
<td class="cart_qty">จำนวน</td>
<td class="cart_total">ราคารวม(฿)</td>
</tr>
<tr class="c0">
<td class="cart_item"><img alt="#" src="images/B1.jpg" /></td>
<td class="cart_name">แหวนเงิน สลักลาย</td>
<td class="cart_price01">999</td>
<td class="cart_qty">
<input id="amount_84"type="text"value="1"name="amount_84" style="width: 48px">
</td>
<td class="cart_total green">
999
<input name="Button1" type="button" value="Delete" />
<br/>
<br/>
<input name="Button2" type="button" value="Update" />
</td>
</tr>
<tr>
<td class="cart_overall" colspan="6">
<span class="gray">ราคารวมทั้งหมด</span>
<span class="overall">999</span>
</td>
</tr>
</tbody>
</table>
<div class="bucket_button">
<form action="index.php" method="post" enctype="multipart/form-data">
<input name="Button3" type="submit" value="Continue Shopping" />
</form>
<br/>
<input name="Button2" type="submit" value="Checkout" />
<?php
$conn=odbc_connect ('ac','','');
if (!$conn)
{exit("Connection Failed: " . $conn);}
$sql="SELECT Shopping_Cart2.*,Product.* FROM Shopping_Cart2,Product WHERE Shopping_Cart2.ProductID = Product.ProductID AND Shopping_Cart2.idShopping='$idCart'";
$rs=odbc_exec($conn,$sql);
while (odbc_fetch_row($rs))
{
$ProName=odbc_result($rs, "ProductName");
$proprice=odbc_result($rs, "ProductPrice");
$proimg=odbc_result($rs, "Productimg");
$proprice=odbc_result($rs, "ProductPrice");
//$sum=odbc_result($rs, "SumPrice");
echo "<tr class='c0'>";
echo "<td class='cart_item'>";
echo "<img src=images/$proimg alt=></img>";
echo "</td>";
echo "<td class='cart_name'>$ProName</td>";
echo "<td class='cart_price01'>$proprice</td>";
echo "<td class='cart_qty'>";
echo "<input id='amount_84'type='text'style='width:48px;'name='amount_84'value='1'>";
echo "</td>";
echo "<td class='cart_total green'>";
echo "$proprice";
echo "<input type='button'value='Delete'name='Button1'>";
echo "<br>";
echo "<br>";
echo "<input type='button'value='Update'name='Button2'>";
echo "</td>";
echo "</tr>";
}
odbc_close($conn);
?>
</div>
</div>
</div>
<div id="footer">
</div>
</body>
</html>
ขอบคุณมากๆครับTag : PHP, Ms Access
Date :
2011-01-13 15:44:02
By :
thegun
View :
1272
Reply :
1
error
Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression., SQL state 22005 in SQLExecDirect in C:\xampp\htdocs\Shopping_Cart.php on line 59
Warning: odbc_fetch_row() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\Shopping_Cart.php on line 60
ครับข้างบนผิดครับ อันนี้ครับ โทษที
Date :
2011-01-13 15:45:42
By :
thegun
Load balance : Server 01