|
|
|
สอบถามเรื่องตะกร้าสินค้า code php หน่อยคะ ไม่สามารถเชื่อมกับ ฐานข้อมูลได้ค้า |
|
|
|
|
|
|
|
Code (VB.NET)
<?php
session_start();
mysql_connect("localhost","root","root");
mysql_select_db("fun-d");
$Total = 0;
$SumTotal = 0;
$strSQL = "
INSERT INTO order (Order_date,name,address,tel,email)
VALUES
('".date("Y-m-d H:i:s")."','".$_POST["txtname"]."','".$_POST["txtaddress"]."' ,'".$_POST["txttel"]."','".$_POST["txtemail"]."')
";
mysql_query($strSQL) or die(mysql_error());
$strOrderID = mysql_insert_id();
for($i=0;$i<=(int)$_SESSION["intLine"];$i++)
{
if($_SESSION["strProduct_id"][$i] != "")
{
$strSQL = "
INSERT INTO orders_detail (Order_id,Product_id,Qty)
VALUES
('".$strOrderID."','".$_SESSION["strProduct_id"][$i]."','".$_SESSION["strQty"][$i]."')
";
mysql_query($strSQL) or die(mysql_error());
}
}
mysql_close();
session_destroy();
header("location:finish_order.php?OrderID=".$strOrderID);
?>
มันแสดงerror เกี่ยวกับ database อะค้า ช่วยหน่อยนะค้า
ทำมาจาก ตย code ของกระทู้นี้อะค้า
https://www.thaicreate.com/free-web-script/php-shopping-cart-session-array.html
Tag : PHP
|
|
|
|
|
|
Date :
2016-03-15 20:17:55 |
By :
fufun |
View :
740 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่แน่ใจ นะครับ เดาว่า เป็นที่ชื่อ order หรือ name ลองเปลี่ยนใช้ชื่ออื่นดู ครับ
|
|
|
|
|
Date :
2016-03-15 22:24:19 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อนึ่ง code มันน่าจะเก่า เอาไปใช้กับ xampp หรือ appserv เวอร์ชั่นสูงๆ ก็คงมีปัญหาตามนี้ครับ
|
|
|
|
|
Date :
2016-03-15 22:53:24 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะต้องใช้พวก isset($_GET["txt"]) มาดักไว้ครับ
|
|
|
|
|
Date :
2016-03-16 10:15:44 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|