|
|
|
หน้ายืนยันการสั่งชื้อสินค้ารายการสั่งซื้อสินค้าไม่ออก ผู้รุ้ช่วยทีค่ะ |
|
|
|
|
|
|
|
หน้า confirm.php
<?
ob_start();
//============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล
session_start();
require("../include/connect.php");
require("../include/function.php");
//============ กรณีเลือกทำการ บันทึกข้อมุลสั่งซื้อ
if($_POST["action"]=="add")
{
// อ่าน OrderID
$strResultOrderID=select("orderid","where 1");
$strOrderID="ORDER-".substr("000000000$strResultOrderID[OrderID]", -6);
//อ่าน MemberID
$strid_mem=select("member","where 1 and email='".$_SESSION["stremail"]."'");
// Insert Order
$sql = "insert into cusorder (OrderNo,id_mem,Total,Date) Values ('$strOrderID','$strid_mem[id_mem]','$_POST[txtTotal]','".date("Y-m-d")."')";
$dbquery = mysql_query($sql);
// Insert Detail
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
$result=select("product","where 1=1 and product_id='".$_SESSION["strproduct_id"]["$i"]."' ");
if($result)
{
$Proid=$_SESSION["strproduct_id"]["$i"];
$Quanlity=$_SESSION["strQuanlity"]["$i"];
$sql = "update product set number=number-$Quanlity where product_id='$product_id'";
$dbquery = mysql_query($sql);
$sql = "insert into order_detail (OrderNo,product_id,Quanlity) Values ('$strOrderID','".$_SESSION["strproduct_id"]["$i"]."','".$_SESSION["strQuanlity"]["$i"]."')";
$dbquery = mysql_query($sql);
}
}
// Update Order ตัวต่อไปให้เป็น 1
update("orderid","OrderID=OrderID+1","where 1");
$_SESSION["strP"]="";
$_SESSION["strproduct_id"]="";
$_SESSION["strQuanlity"]="";
session_write_close();
//============ กระโดดไปหน้า ordercomplete.php
header("location:ordercomplete.php?OrderID=$strOrderID");
}
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="417" height="310" valign="top">
<form action="" method="post" name="frmCart" id="frmCart">
<table width="601" border="0">
<tr>
<td><table width="418" height="22" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td width="8"> <img src="image/menu01.jpg" width="8" height="22" alt=""></td>
<td width="389" background="image/menu02.jpg"><div align="center"><strong>ยืนยันข้อมูล</strong><strong></strong><strong>
</strong></div></td>
<td width="9"> <img src="image/menu03.jpg" width="9" height="22" alt=""></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><div align="center">
<table width="601" border="0">
<tr>
<td><strong>
<input name="action" type="hidden" id="action" value="add">
</strong></td>
</tr>
<tr>
<td><table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="center">ลำดับ</div></td>
<td>ชื่อสินค้า</td>
<td><div align="center">ราคา</div></td>
<td><div align="center">ค่าจัดส่ง</div></td>
<td><div align="center">จำนวน</div></td>
<td><div align="center">รวม</div></td>
</tr>
<?
//============ แสดงรายการที่ได้สั่งซื้อว่ามีอะไรบ้าง
$strNum=0;
$strTotal=0;
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
//============ เลือกว่าเป็นรายการสินค้าชนิดใด
$result=select("product","where 1=1 and product_id ='".$_SESSION["strproduct_id"]["$i"]."' ");
if($result)
{
$strNum++;
?>
<tr bgcolor="#FFFFFF">
<td width="9%"> <div align="center">
<?=$strNum;?>
</div></td>
<td width="48%">
<?=$result["product_name_th"];?>
</td>
<td width="14%"> <div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%">
<div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%"><div align="center">
<?=$_SESSION["strQuanlity"]["$i"];?>
</div></td>
<td width="16%"> <div align="right">
<?="".number_format(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"], 2,'.',',');?>
</div></td>
</tr>
<?
$strTotal=$strTotal+(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"]);
}
}
?>
</table>
<br> <table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="right">จำนวน (รายการ)</div></td>
<td> <div align="right">
<?=$strNum;?>
</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td> <div align="right">ราคารวม (บาท)</div></td>
<td width="16%"> <div align="right">
<?="".number_format($strTotal, 2,'.',',');?>
<input name="txtTotal" type="hidden" value="<?=$strTotal;?>">
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td width="378">
<div align="center"><br>
<hr align="center" width="98%" color="#f2f2f6">
<br>
<?
if($strNum==0)
{
echo "<br><center><strong><font color=red>ไม่มีรายการสั่งซื้อ</font></strong></center><br><br>";
}
?>
<input name="BtnContinute" type="button" class="button" id="BtnContinute" value="กลับไปแก้ไข" onClick="window.location='cart.php';">
<?
if($strNum>0)
{?>
<input name="BtnPayment" type="submit" class="button" id="BtnPayment" value="ยืนยันการสั่งซื้อ">
<?}?>
<br>
</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td width="378"> </td>
</tr>
</table>
</form>
<p class="style59"> </p>
<p class="style59"> </p>
<p class="style59"> </p></td>
</tr>
</table>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-09-11 16:41:44 |
By :
บ่าบอ |
View :
837 |
Reply :
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้า ordercomplete.php
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="417" height="310" valign="top">
<form action="" method="post" name="frmCart" id="frmCart">
<table width="601" border="0">
<tr>
<td><table width="418" height="22" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td width="8"> <img src="image/menu01.jpg" width="8" height="22" alt=""></td>
<td width="389" background="image/menu02.jpg"><div align="center"><strong>ยืนยันข้อมูล</strong><strong></strong><strong>
</strong></div></td>
<td width="9"> <img src="image/menu03.jpg" width="9" height="22" alt=""></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><div align="center">
<table width="601" border="0">
<tr>
<td><strong>
<input name="action" type="hidden" id="action" value="add">
</strong></td>
</tr>
<tr>
<td><table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="center">ลำดับ</div></td>
<td>ชื่อสินค้า</td>
<td><div align="center">ราคา</div></td>
<td><div align="center">ค่าจัดส่ง</div></td>
<td><div align="center">จำนวน</div></td>
<td><div align="center">รวม</div></td>
</tr>
<?
//============ แสดงรายการที่ได้สั่งซื้อว่ามีอะไรบ้าง
$strNum=0;
$strTotal=0;
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
//============ เลือกว่าเป็นรายการสินค้าชนิดใด
$result=select("product","where 1=1 and product_id ='".$_SESSION["strproduct_id"]["$i"]."' ");
if($result)
{
$strNum++;
?>
<tr bgcolor="#FFFFFF">
<td width="9%"> <div align="center">
<?=$strNum;?>
</div></td>
<td width="48%">
<?=$result["product_name_th"];?>
</td>
<td width="14%"> <div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%">
<div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%"><div align="center">
<?=$_SESSION["strQuanlity"]["$i"];?>
</div></td>
<td width="16%"> <div align="right">
<?="".number_format(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"], 2,'.',',');?>
</div></td>
</tr>
<?
$strTotal=$strTotal+(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"]);
}
}
?>
</table>
<br> <table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="right">จำนวน (รายการ)</div></td>
<td> <div align="right">
<?=$strNum;?>
</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td> <div align="right">ราคารวม (บาท)</div></td>
<td width="16%"> <div align="right">
<?="".number_format($strTotal, 2,'.',',');?>
<input name="txtTotal" type="hidden" value="<?=$strTotal;?>">
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td width="378">
<div align="center"><br>
<hr align="center" width="98%" color="#f2f2f6">
<br>
<?
if($strNum==0)
{
echo "<br><center><strong><font color=red>ไม่มีรายการสั่งซื้อ</font></strong></center><br><br>";
}
?>
<input name="BtnContinute" type="button" class="button" id="BtnContinute" value="กลับไปแก้ไข" onClick="window.location='cart.php';">
<?
if($strNum>0)
{?>
<input name="BtnPayment" type="submit" class="button" id="BtnPayment" value="ยืนยันการสั่งซื้อ">
<?}?>
<br>
</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td width="378"> </td>
</tr>
</table>
</form>
<p class="style59"> </p>
<p class="style59"> </p>
<p class="style59"> </p></td>
</tr>
</table>
|
|
|
|
|
Date :
2012-09-11 16:43:11 |
By :
บ่าบอ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มาเต็ม
|
|
|
|
|
Date :
2012-09-11 16:43:49 |
By :
tongspy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำหลายวันแล้วไม่ได้สักทีค่ะ
|
ประวัติการแก้ไข 2012-09-11 16:47:55
|
|
|
|
Date :
2012-09-11 16:46:42 |
By :
บ่าบอ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ tag php จะได้ดูง่ายขึ้นครับ มา code เยอะๆแบบนี้ ส่วนใหญ่ คนที่จะตอบต้องมีเวลาว่างนั่งไล่ code ให้
หน้า confirm.php
<?
ob_start();
//============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล
session_start();
require("../include/connect.php");
require("../include/function.php");
//============ กรณีเลือกทำการ บันทึกข้อมุลสั่งซื้อ
if($_POST["action"]=="add")
{
// อ่าน OrderID
$strResultOrderID=select("orderid","where 1");
$strOrderID="ORDER-".substr("000000000$strResultOrderID[OrderID]", -6);
//อ่าน MemberID
$strid_mem=select("member","where 1 and email='".$_SESSION["stremail"]."'");
// Insert Order
$sql = "insert into cusorder (OrderNo,id_mem,Total,Date) Values ('$strOrderID','$strid_mem[id_mem]','$_POST[txtTotal]','".date("Y-m-d")."')";
$dbquery = mysql_query($sql);
// Insert Detail
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
$result=select("product","where 1=1 and product_id='".$_SESSION["strproduct_id"]["$i"]."' ");
if($result)
{
$Proid=$_SESSION["strproduct_id"]["$i"];
$Quanlity=$_SESSION["strQuanlity"]["$i"];
$sql = "update product set number=number-$Quanlity where product_id='$product_id'";
$dbquery = mysql_query($sql);
$sql = "insert into order_detail (OrderNo,product_id,Quanlity) Values ('$strOrderID','".$_SESSION["strproduct_id"]["$i"]."','".$_SESSION["strQuanlity"]["$i"]."')";
$dbquery = mysql_query($sql);
}
}
// Update Order ตัวต่อไปให้เป็น 1
update("orderid","OrderID=OrderID+1","where 1");
$_SESSION["strP"]="";
$_SESSION["strproduct_id"]="";
$_SESSION["strQuanlity"]="";
session_write_close();
//============ กระโดดไปหน้า ordercomplete.php
header("location:ordercomplete.php?OrderID=$strOrderID");
}
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="417" height="310" valign="top">
<form action="" method="post" name="frmCart" id="frmCart">
<table width="601" border="0">
<tr>
<td><table width="418" height="22" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td width="8"> <img src="image/menu01.jpg" width="8" height="22" alt=""></td>
<td width="389" background="image/menu02.jpg"><div align="center"><strong>ยืนยันข้อมูล</strong><strong></strong><strong>
</strong></div></td>
<td width="9"> <img src="image/menu03.jpg" width="9" height="22" alt=""></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><div align="center">
<table width="601" border="0">
<tr>
<td><strong>
<input name="action" type="hidden" id="action" value="add">
</strong></td>
</tr>
<tr>
<td><table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="center">ลำดับ</div></td>
<td>ชื่อสินค้า</td>
<td><div align="center">ราคา</div></td>
<td><div align="center">ค่าจัดส่ง</div></td>
<td><div align="center">จำนวน</div></td>
<td><div align="center">รวม</div></td>
</tr>
<?
//============ แสดงรายการที่ได้สั่งซื้อว่ามีอะไรบ้าง
$strNum=0;
$strTotal=0;
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
//============ เลือกว่าเป็นรายการสินค้าชนิดใด
$result=select("product","where 1=1 and product_id ='".$_SESSION["strproduct_id"]["$i"]."' ");
if($result)
{
$strNum++;
?>
<tr bgcolor="#FFFFFF">
<td width="9%"> <div align="center">
<?=$strNum;?>
</div></td>
<td width="48%">
<?=$result["product_name_th"];?>
</td>
<td width="14%"> <div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%">
<div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%"><div align="center">
<?=$_SESSION["strQuanlity"]["$i"];?>
</div></td>
<td width="16%"> <div align="right">
<?="".number_format(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"], 2,'.',',');?>
</div></td>
</tr>
<?
$strTotal=$strTotal+(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"]);
}
}
?>
</table>
<br> <table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="right">จำนวน (รายการ)</div></td>
<td> <div align="right">
<?=$strNum;?>
</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td> <div align="right">ราคารวม (บาท)</div></td>
<td width="16%"> <div align="right">
<?="".number_format($strTotal, 2,'.',',');?>
<input name="txtTotal" type="hidden" value="<?=$strTotal;?>">
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td width="378">
<div align="center"><br>
<hr align="center" width="98%" color="#f2f2f6">
<br>
<?
if($strNum==0)
{
echo "<br><center><strong><font color=red>ไม่มีรายการสั่งซื้อ</font></strong></center><br><br>";
}
?>
<input name="BtnContinute" type="button" class="button" id="BtnContinute" value="กลับไปแก้ไข" onClick="window.location='cart.php';">
<?
if($strNum>0)
{?>
<input name="BtnPayment" type="submit" class="button" id="BtnPayment" value="ยืนยันการสั่งซื้อ">
<?}?>
<br>
</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td width="378"> </td>
</tr>
</table>
</form>
<p class="style59"> </p>
<p class="style59"> </p>
<p class="style59"> </p></td>
</tr>
</table>
|
ประวัติการแก้ไข 2012-09-11 16:52:00
|
|
|
|
Date :
2012-09-11 16:50:44 |
By :
tongspy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้า ordercomplete.php
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="417" height="310" valign="top">
<form action="" method="post" name="frmCart" id="frmCart">
<table width="601" border="0">
<tr>
<td><table width="418" height="22" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td width="8"> <img src="image/menu01.jpg" width="8" height="22" alt=""></td>
<td width="389" background="image/menu02.jpg"><div align="center"><strong>ยืนยันข้อมูล</strong><strong></strong><strong>
</strong></div></td>
<td width="9"> <img src="image/menu03.jpg" width="9" height="22" alt=""></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><div align="center">
<table width="601" border="0">
<tr>
<td><strong>
<input name="action" type="hidden" id="action" value="add">
</strong></td>
</tr>
<tr>
<td><table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="center">ลำดับ</div></td>
<td>ชื่อสินค้า</td>
<td><div align="center">ราคา</div></td>
<td><div align="center">ค่าจัดส่ง</div></td>
<td><div align="center">จำนวน</div></td>
<td><div align="center">รวม</div></td>
</tr>
<?
//============ แสดงรายการที่ได้สั่งซื้อว่ามีอะไรบ้าง
$strNum=0;
$strTotal=0;
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
//============ เลือกว่าเป็นรายการสินค้าชนิดใด
$result=select("product","where 1=1 and product_id ='".$_SESSION["strproduct_id"]["$i"]."' ");
if($result)
{
$strNum++;
?>
<tr bgcolor="#FFFFFF">
<td width="9%"> <div align="center">
<?=$strNum;?>
</div></td>
<td width="48%">
<?=$result["product_name_th"];?>
</td>
<td width="14%"> <div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%">
<div align="right">
<?="".number_format($result["price_master"], 2,'.',',');?>
</div></td>
<td width="13%"><div align="center">
<?=$_SESSION["strQuanlity"]["$i"];?>
</div></td>
<td width="16%"> <div align="right">
<?="".number_format(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"], 2,'.',',');?>
</div></td>
</tr>
<?
$strTotal=$strTotal+(($result["price_master"]+$result["price_master"])*$_SESSION["strQuanlity"]["$i"]);
}
}
?>
</table>
<br> <table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="right">จำนวน (รายการ)</div></td>
<td> <div align="right">
<?=$strNum;?>
</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td> <div align="right">ราคารวม (บาท)</div></td>
<td width="16%"> <div align="right">
<?="".number_format($strTotal, 2,'.',',');?>
<input name="txtTotal" type="hidden" value="<?=$strTotal;?>">
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td width="378">
<div align="center"><br>
<hr align="center" width="98%" color="#f2f2f6">
<br>
<?
if($strNum==0)
{
echo "<br><center><strong><font color=red>ไม่มีรายการสั่งซื้อ</font></strong></center><br><br>";
}
?>
<input name="BtnContinute" type="button" class="button" id="BtnContinute" value="กลับไปแก้ไข" onClick="window.location='cart.php';">
<?
if($strNum>0)
{?>
<input name="BtnPayment" type="submit" class="button" id="BtnPayment" value="ยืนยันการสั่งซื้อ">
<?}?>
<br>
</div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td width="378"> </td>
</tr>
</table>
</form>
<p class="style59"> </p>
<p class="style59"> </p>
<p class="style59"> </p></td>
</tr>
</table>
|
|
|
|
|
Date :
2012-09-11 16:51:16 |
By :
tongspy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-09-11 16:58:43 |
By :
บ่าบอ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แง่วไม่มีใครตอบเลย
|
|
|
|
|
Date :
2012-09-11 17:37:13 |
By :
บ่าบอ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ออกนี่ไม่ออกยังไง ไม่ออกเพราะเชื่อมต่อเบสไม่ได้, คำสั่ง select มีปัญหา, เออเรออะไรไหม, ชื่อตัวแปรถูกต้องหรือป่าว, ชื่อฟิลด์ถูกต้องไหม
คุณบอกว่ามันไม่ออกคนที่เข้ามาก็ไม่สามารถตอบได้หรอกว่ามันไม่ออกเพราะอะไร เพราะเค้าไม่ได้ทำเองน่ะ
ต้องขอโทษด้วยที่ไม่ได้ช่วยอะไรได้เยอะน่ะ เพราะคุณไม่ได้บอกอะไรเลยว่ามันเป็นยังไง
|
|
|
|
|
Date :
2012-09-11 18:54:29 |
By :
บังเอิญผ่านมาเห็น |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รายการสินค้าที่สั่งซื้อมันไม่ออกนะค่ะตรงหน้า ordercomplete พอดีก็อบมาจากอีกโปรเจ็กนะค่ะเหมือนกันทุกอย่างแต่ งงว่าทำไมมันไม่มีข้อมูลออกมาแสดง
|
|
|
|
|
Date :
2012-09-12 00:27:35 |
By :
บ้าบอ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วชื่อ field ใน db กับตอนที่ select table name มันตรงกันหรือป่าวครับ
|
|
|
|
|
Date :
2012-09-12 09:05:12 |
By :
backship |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แวะมาถาม แล้วใน db มันเก็บข้อมูลที่สั่งซื้อไหม ถ้ามีก็ไป เอา คำสั่ง sql ไปรันในตัว ไว้ดู database พวก phpmyadmin ว่ามีอะไรออกมาไหม
|
|
|
|
|
Date :
2012-09-12 09:41:19 |
By :
tongspy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|