|
|
|
ช่วยดูโค้ดใบสั่งซื้อให้หน่อยค่ะข้อมูลมันออกมาไม่ครบ |
|
|
|
|
|
|
|
ข้อมูลในใบสั่งซื้อมันออกมาไม่ครบไม่รู้ว่าเขียนโค้ดผิดหรือเปล่าค่ะ
โค้ดใบสั่งซื้อ
Code (PHP)
<?
include"chksession.php";
include"function.php";
include"connect.php";
$id_order=$_GET["id"];
$time=$_GET['datetime'];
// session_register("sess_timemark");
//$_SESSION["sess_timemark"]=$time;
//ฟังก์ชั่นในการแสดงวันที่เป็นปี พ.ศ. ซึ่งมีรายละเอียดการเรียกใช้ดังนี้ $date คือวันที่ปัจจุบัน เช่น date("Y-m-d") (ต้องใช้รูปแบบ Y-m-d เท่านั้น), $days คือวันที่ที่ต้องการบวกเพิ่มเข้าไป, $months คือ เดือนที่ต้องการบวกเพิ่มเข้าไป, $years คือ ปีที่ต้องการบวกเพิ่่่่่่่มเข้าไป ตัวอย่างเช่น thaicurrentday(date("Y-m-d"), 1, 0, 1) ถ้าวันปัจจุบันคือ 2010-05-02 ผลที่ได้รับคือ 03/05/2554
function thaicurrentday($date, $days, $months, $years)
{
//เป็นคำสั่งในการแยกข้อความให้เป็น array ในที่นี้คือ 2010-05-02 สิ่งที่ได้คือ $datevalue[0] จะเท่ากับ 2010, $datevalue[1] จะเท่ากับ 05, $datevalue[2] จะเท่ากับ 02 ซึ่งวิธีการทำงานของฟังก์ชั่นนี้จะแยกข้อความเป็น array โดยในที่นี้กำหนด - เป็นตัวแยก เมื่อเจอ - ก็จะแยกเป็น arrayๆ ออกมาให้
$datevalue = explode("-", $date);
//ฟังก์ชั่น mktime คือ ฟังก์ชั่นในการกำหนดตัวเลขให้เป็นเวลา ซึ่งประกอบไปด้วย ชั่วโมง, นาที, วินาที, เดือน, วัน, ปี เมื่อกำหนดใน mktime แล้วก็นำมาใส่ในฟังก์ชั่น date เพื่อที่จะทำให้อยู่ในรูปแบบวันที่ ซึ่งรูปแบบในที่นี้คือ Y-m-d เราสามารถบวก ชั่วโมง, นาที, วินาที, เดือน, วัน, ปี ได้ตามต้องการ โดยการใส่ + แล้วตามด้วยตัวเลขที่ต้องการ เช่น $datevalue[1] + 2 คือการบวก 2 เดือน เพราะอยู่ในตำแหน่งของเดือน
$currentday = date("Y-m-d", mktime(0, 0, 0, $datevalue[1] + $months, $datevalue[2] + $days, $datevalue[0] + $years));
//เหมือนกับที่ได้อธิบายทางด้านบน
$datearray = explode("-", $currentday);
//ส่งค่าวันที่กลับโดยจะอยู่ในรูปแบบ วัน/เดือน/ปี เช่น 02/05/2010
return $datearray[2] . "/" . $datearray[1] . "/" . ($datearray[0]+543);
}
$table = mysql_query("SELECT * FROM bookdate") or die ("Query Error : SELECT goodssup <" . mysql_error() . ">");
$field = mysql_fetch_array($table);
$fid_bookdate = $field["id_bookdate"];
$fddayexpire = $field["dayexpire"];
mysql_query("SET NAMES utf8") or die (mysql_error());
$sess_adminid=session_id();
$username= $_SESSION[sess_username];
//ดึงข้อมูลใบสั่งซื้อ
$table = mysql_query("SELECT MAX(id) AS id_order FROM `order`") or die ("Query Error : SELECT `order` <" . mysql_error() . ">");
$field = mysql_fetch_array($table);
$id_order = $field["id_order"];
$date = $field["date"];
$tableorder = mysql_query("SELECT `order`.id,`order`.member_id,`order`.status_pay,`order`.date,`order`.datetime,order_detail.id,order_detail.id_order,order_detail.product_id,order_detail.amount1,product.id,product.name_pr,product.detail,product.price,product.price2,product.price3,product.amount,member.name,member.surname,member.address,member.phone FROM `order`,order_detail,product,member WHERE (`order`.id='$id_order')AND(order_detail.id_order=`order`.id) AND(member.id=`order`.member_id) AND(product.id=order_detail.product_id)") or die ("Query Error : SELECT order " . mysql_error() . ">");
$field = mysql_fetch_array($tableorder);
$name_pr=$field["name_pr"];
//echo $name;
$amount1=$field["amount"];
$price2=$field["price2"];
$price3=$field["price3"];
$status=$field["status_pay"];
$status_pro=$field["status_pro"];
$id_pr=$field["id"];
$tableorder1 = mysql_query("SELECT `order`.id,`order`.date,`order`.datetime,`order`.member_id,`order`.status_pay,`order`.status_pro,member.id,member.name,member.surname,member.address,member.phone FROM `order`,member WHERE (`order`.id='$id_order')AND(`order`.member_id=member.id)") or die ("Query Error : SELECT order <" . mysql_error() . ">");
$field2 = mysql_fetch_array($tableorder1);
$id_mem=$field2["id"];
$name=$field2["name"];
$surname=$field2["surname"];
$address=$field2["address"];
$phone=$field2["phone"];
$date1=$field2["date"];
$status=$field2["status_pay"];
$status_pro=$field2["status_pro"];
$id_pr=$field2["product_id"];
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ใบสั่งซื้อ</title>
<link href="OTOPSatun/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style6 {
font-size: 14px;
font-family: "MS Sans Serif", Tahoma, "Cordia New";
}
.style8 {
font-family: "MS Sans Serif", Tahoma, "Cordia New";
font-size: 16px;
}
.style11 {text-decoration: none; font-family: Tahoma, "MS Sans Serif", CordiaUPC;}
.style12 {font-family: "MS Sans Serif", Tahoma, "Cordia New"}
.style13 {
color: #000000;
text-decoration: none;
font-size: 14px;
font-weight: bold;
}
.style14 {
text-decoration: none;
color: #993399;
font-size: 14px;
font-weight: bold;
}
.style30 {font-size: 14px}
.style33 {text-decoration: none; color: #000000;}
.style34 {
font-family: "MS Sans Serif", Tahoma, "Cordia New";
font-weight: bold;
}
.style39 {text-decoration: none; color: #FF0000;}
.style48 {font-size: 14px; font-family: "MS Sans Serif", Tahoma, "Cordia New"; font-weight: bold; }
.style55 {font-family: "MS Sans Serif", Tahoma, "Cordia New"; font-size: 16px; font-weight: bold; }
.style20 {font-family: Geneva, Arial, Helvetica, sans-serif;
color: #000000;
}
.style46 {text-decoration: none}
.style47 {color: #000000}
.style49 {color: #000000; text-decoration: none; font-size: 12px;}
.style54 {font-family: "MS Sans Serif", Tahoma, "Cordia New"; color: #000000; font-size: 16px; font-weight: bold; }
.style60 {text-decoration: none; font-family: Tahoma, "MS Sans Serif", CordiaUPC; font-size: 18px; }
.style61 {font-size: 16px}
.style62 {text-decoration: none; color: #000000; font-size: 16px; }
-->
</style>
</head>
<body>
<table width="730" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th scope="col"> </th>
<th width="355" scope="col"> </th>
<th width="347" scope="col"> </th>
<th scope="col"> </th>
</tr>
<tr>
<th width="15" height="29" scope="col"> </th>
<th colspan="2" align="center" scope="col"><span class="black_14 style8"><span class="style60">ใบสั่งซื้อสินค้า</span></span></th>
<th width="13" scope="col"> </th>
</tr>
<tr>
<td> </td>
<td align="left" valign="top" class="black_13"> </td>
<td align="right" valign="top"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td align="left" valign="top" class="black_13"><strong class="black_12"><span class="style6">เลขที่ใบสั่งซื้อ</span> <span class="style6">: </span></strong><strong><? echo $id_order;?></strong></td>
<td align="right" valign="top"><strong class="black_12 style12"><span class="style13 style12 style61"> วันที่ : <?php echo thaicurrentday(date("Y-m-d"), 0, 0, 0); ?> เวลา : <?php echo date("h:i:s"); ?></span><span class="style14"> </span></strong></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td class="style48">ร้านตุ๊กตาโครเชต์</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td colspan="2" class="black_12"><span class="style48">189/2 หมู่ 2 ตำบลธงชัย อำเภอบางสะพาน </span></td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td class="style48"><span class="style49"><span class="style30">จังหวัดประจวบคีรีขันธ์ </span></span>77190</td>
<td align="right" class="black_12"><div align="left"><span class="style6"><strong><span class="style33"> รหัสลูกค้า</span><span class="style33"> : <span class="style48"><span class="style55"><? echo $id_mem;?></span></span> </span> </strong></span></div></td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td><span class="black_12 style12 style30"><span class="style12 style11"><span class="style12 style11"><strong><span class="style11 style12">เบอร์โทรศัพท์ 08-4320-8468 </span></strong></span></span></span></td>
<td align="right"><div align="left"><span class="black_13 style12 style30"><span class="style34"> ชื่อ-สกุล : <span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $name;?></span></span></span></span>-<span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $surname;?></span></span></span></span></span></span></div></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><div align="left"><span class="style6"><strong> โทรศัพท:์</strong> <strong><span class="style20"><span class="style55"><? echo $phone;?></span></span> </strong></span></div></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"><table width="602" border="1" cellpadding="0" cellspacing="0">
<tr>
<th width="88" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">รหัสสินค้า</strong></th>
<th width="195" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">ชื่อสินค้า</strong></th>
<th width="86" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">ราคา</strong></th>
<th width="56" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">จำนวน</strong></th>
<th width="72" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">ค่าจัดส่ง</strong></th>
<th width="91" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><span class="style6"><strong>รวมเงิน</strong></span></th>
</tr>
<?
while($field = mysql_fetch_array($tableorder))
{
?>
<tr>
<td align="left" bordercolor="#000000" class="black_13 style12">
<div align="center"><span class="style30"> <strong><?php echo $field["product_id"]; ?></strong></span> </div></td>
<td align="left" bordercolor="#000000" class="black_13 style12 style30"> <strong><?php echo $field["name_pr"]; ?></strong></td>
<td align="right" bordercolor="#000000" class="black_13 style12 style30"><strong><?php echo number_format( $field["price2"], 2, ".", ","); ?></strong> </td>
<td align="center" bordercolor="#000000"><span class="black_13 style12 style30"><span class="style12 style30 style11"><strong><?php echo number_format( $field["amount1"], 0 ,".", ","); ?></strong></span></span></td>
<td align="right" bordercolor="#000000"><span class="black_13 style12 style30"><span class="style12 style30 style11"><strong><strong><?php echo number_format( $field["price3"], 2, ".", ","); ?></strong> </strong></span></span></td>
<td width="91" align="right" bordercolor="#000000"><span class="black_13 style12 style30"><span class="style12 style30 style11"><span class="style8"><strong><strong><span class="style33"><span class="style46"><strong><span class="style47"><strong>
<?=number_format($field["price2"]*$field["amount1"]+$field["price3"],2,".",",")?>
</strong></span></strong></span></span></strong></strong></span></span></span> </td>
</tr>
<?
$sum+=$field["price2"]*$field["amount1"]+$field["price3"];
?>
<?
}
?>
</table>
</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"><table width="357" border="0" align="right" cellpadding="2" cellspacing="0">
<tr>
<th width="240" height="23" align="right" class="black_14_underline" scope="col"><span class="style6"><strong>ยอดรวมทั้งสิ้น</strong></span></th>
<th width="9" align="center" class="black_13 style12 style30" scope="col">:</th>
<th width="53" align="right" class="black_14" scope="col"><span class="style6"><span class="bubble_14"><strong class="black_13 style12 style30">
<?=number_format($sum ,2, ".", ",");?>
</strong></span></span></th>
<th width="86" align="right" class="black_14" scope="col"><div align="left"><span class="style6"><strong>บาท </strong></span></div></th>
</tr>
</table></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="left">
<!-- แสดงกำหนดวันสิ้นสุดชำระเงินค่ามัดจำ โดยเรียกใช้ฟังก์ชั่น thaicurrentday เพื่อแสดงวันที่ภาษาไทย โดยบวกจำนวนวันที่ต้องชำระเงินมัดจำ สมมติ กำหนดไว้ 5 วัน ก็จะบวกจากวันปัจจุบันไปอีก 5 วัน เช่น 2010-05-02 -> 07/05/2010 -->
<span class="style6"><strong><span class="style39">หมายเหตุ : </span><span class="style62">กรุณาชำระเงินก่อนวันที่ : </span></strong></span><span class="style62"><strong class="black_12 style12"><?php echo thaicurrentday(date("Y-m-d"), $fddayexpire, 0, 0); ?></strong><strong></strong></span><span class="style6"><span class="style61"><strong><span class="style33"> (<?php echo $fddayexpire; ?> วัน)</span></strong></span></span> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" class="style6"><strong>สามารถชำระเงินได้ที่ตู้ ATM หรือเคาน์เตอร์ธนาคาร</strong></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"><table width="700" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="140" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">ชื่อธนาคาร</th>
<th width="106" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">สาขา</th>
<th width="127" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">เลขที่บัญชี</th>
<th width="151" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">ชื่อบัญชี</th>
<th width="164" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">ประเภทบัญชี</th>
</tr>
<tr>
<td align="left" valign="middle" bordercolor="#000000" class="style6"> กรุงไทย</td>
<td align="left" valign="middle" bordercolor="#000000"> <span class="style12">พระนคร</span></td>
<td align="center" valign="middle" bordercolor="#000000" class="style6">7310157788</td>
<td align="left" valign="middle" bordercolor="#000000" class="style6"> รุ่งอรุณ ปานสีสุข </td>
<td align="left" valign="middle" bordercolor="#000000"><div align="center"><span class="style12">ออมทรัพย์</span></div></td>
</tr>
</table></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td class="style6"> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td class="style6"><strong>ชื่อ-ที่อยู่ในการจัดส่งสินค้า</strong></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"><table width="646" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="49" align="right" scope="col"><span class="black_13 style12 style30"><span class="style34">คุณ</span></span></th>
<th width="4" align="left" scope="col"> </th>
<th width="466" align="left" class="black_13" scope="col"><span class="style6"><span class="black_13 style12 style30"><span class="style34"><span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $name;?></span></span></span></span> <span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $surname;?></span></span></span></span></span></span></span></th>
</tr>
<tr>
<td> </td>
<td width="4"> </td>
<td align="left" class="black_13"><span class="style6"><span class="style54"><? echo $address;?></span></span></td>
</tr>
</table></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"> <input onClick="javascript:window.print()" type="button" value="พิมพ์" />
<input type="submit" name="Submit" value="กลับหน้าหลัก"onClick="window.location='main.php'"/></td><td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
มันไม่มีเออเรอนะค่ะ แต่ข้อมูลมันออกมาไม่ครบ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-02-25 08:51:01 |
By :
friend |
View :
1046 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองไล่ดูที่ละตัวนะครับ ผมลงใส่ echo แต่ละตัวให้จะเช็คได้ว่าค่า id ถูกส่งค่า id หรือ และ select เอาค่า max(id) มาได้หรือไม่ และให้สังเกตุการ select เอาข้อมูลมาแสดงตรงเงื่อนไข where ว่ามีค่าหรือเป็นค่าว่างกันแน่
Code (PHP)
<?
include"chksession.php";
include"function.php";
include"connect.php";
$id_order=$_GET["id"];
echo "ID นี้ถูกส่งค่ามา = ".$id_order."<br>";
$time=$_GET['datetime'];
// session_register("sess_timemark");
//$_SESSION["sess_timemark"]=$time;
//ฟังก์ชั่นในการแสดงวันที่เป็นปี พ.ศ. ซึ่งมีรายละเอียดการเรียกใช้ดังนี้ $date คือวันที่ปัจจุบัน เช่น date("Y-m-d") (ต้องใช้รูปแบบ Y-m-d เท่านั้น), $days คือวันที่ที่ต้องการบวกเพิ่มเข้าไป, $months คือ เดือนที่ต้องการบวกเพิ่มเข้าไป, $years คือ ปีที่ต้องการบวกเพิ่่่่่่่มเข้าไป ตัวอย่างเช่น thaicurrentday(date("Y-m-d"), 1, 0, 1) ถ้าวันปัจจุบันคือ 2010-05-02 ผลที่ได้รับคือ 03/05/2554
function thaicurrentday($date, $days, $months, $years)
{
//เป็นคำสั่งในการแยกข้อความให้เป็น array ในที่นี้คือ 2010-05-02 สิ่งที่ได้คือ $datevalue[0] จะเท่ากับ 2010, $datevalue[1] จะเท่ากับ 05, $datevalue[2] จะเท่ากับ 02 ซึ่งวิธีการทำงานของฟังก์ชั่นนี้จะแยกข้อความเป็น array โดยในที่นี้กำหนด - เป็นตัวแยก เมื่อเจอ - ก็จะแยกเป็น arrayๆ ออกมาให้
$datevalue = explode("-", $date);
//ฟังก์ชั่น mktime คือ ฟังก์ชั่นในการกำหนดตัวเลขให้เป็นเวลา ซึ่งประกอบไปด้วย ชั่วโมง, นาที, วินาที, เดือน, วัน, ปี เมื่อกำหนดใน mktime แล้วก็นำมาใส่ในฟังก์ชั่น date เพื่อที่จะทำให้อยู่ในรูปแบบวันที่ ซึ่งรูปแบบในที่นี้คือ Y-m-d เราสามารถบวก ชั่วโมง, นาที, วินาที, เดือน, วัน, ปี ได้ตามต้องการ โดยการใส่ + แล้วตามด้วยตัวเลขที่ต้องการ เช่น $datevalue[1] + 2 คือการบวก 2 เดือน เพราะอยู่ในตำแหน่งของเดือน
$currentday = date("Y-m-d", mktime(0, 0, 0, $datevalue[1] + $months, $datevalue[2] + $days, $datevalue[0] + $years));
//เหมือนกับที่ได้อธิบายทางด้านบน
$datearray = explode("-", $currentday);
//ส่งค่าวันที่กลับโดยจะอยู่ในรูปแบบ วัน/เดือน/ปี เช่น 02/05/2010
return $datearray[2] . "/" . $datearray[1] . "/" . ($datearray[0]+543);
}
$table = mysql_query("SELECT * FROM bookdate") or die ("Query Error : SELECT goodssup <" . mysql_error() . ">");
$field = mysql_fetch_array($table);
$fid_bookdate = $field["id_bookdate"];
$fddayexpire = $field["dayexpire"];
mysql_query("SET NAMES utf8") or die (mysql_error());
$sess_adminid=session_id();
$username= $_SESSION[sess_username];
//ดึงข้อมูลใบสั่งซื้อ
$table = mysql_query("SELECT MAX(id) AS id_order FROM `order`") or die ("Query Error : SELECT `order` <" . mysql_error() . ">");
echo "1. ---->".$table."<br>"; // เช็คว่าได้ select max id มาหรือไม่
$field = mysql_fetch_array($table);
$id_order = $field["id_order"];
echo "2. ---->".$id_order."<br>"; // เช็คว่า $id_order เป็นค่าอะไ่ร
$date = $field["date"];
$tableorder = mysql_query("SELECT `order`.id,`order`.member_id,`order`.status_pay,`order`.date,`order`.datetime,order_detail.id,order_detail.id_order,order_detail.product_id,order_detail.amount1,product.id,product.name_pr,product.detail,product.price,product.price2,product.price3,product.amount,member.name,member.surname,member.address,member.phone FROM `order`,order_detail,product,member WHERE (`order`.id='$id_order')AND(order_detail.id_order=`order`.id) AND(member.id=`order`.member_id) AND(product.id=order_detail.product_id)") or die ("Query Error : SELECT order " . mysql_error() . ">");
echo "3. ---->".$tableorder."<br>"; // เช็คว่า select ข้อมูลมาตามเงื่อนไขหรือไม่ ให้สังเกตุที่เงื่อนไข where ว่าถูกต้องหรือไม่ ถ้าถูกจะมีค่าส่งมาให้ ถ้าไม่ถูกจะเป็นค่า '' เพราะฉนั้นต้องไปดูว่า select id มาถูกหรือไม่
$field = mysql_fetch_array($tableorder);
$name_pr=$field["name_pr"];
//echo $name;
$amount1=$field["amount"];
$price2=$field["price2"];
$price3=$field["price3"];
$status=$field["status_pay"];
$status_pro=$field["status_pro"];
$id_pr=$field["id"];
$tableorder1 = mysql_query("SELECT `order`.id,`order`.date,`order`.datetime,`order`.member_id,`order`.status_pay,`order`.status_pro,member.id,member.name,member.surname,member.address,member.phone FROM `order`,member WHERE (`order`.id='$id_order')AND(`order`.member_id=member.id)") or die ("Query Error : SELECT order <" . mysql_error() . ">");
echo "4. ---->".$tableorder1; // เช็คว่า select ข้อมูลมาตามเงื่อนไขหรือไม่ ให้สังเกตุที่เงื่อนไข where ว่าถูกต้องหรือไม่ ถ้าถูกจะมีค่าส่งมาให้ ถ้าไม่ถูกจะเป็นค่า '' เพราะฉนั้นต้องไปดูว่า select id มาถูกหรือไม่
$field2 = mysql_fetch_array($tableorder1);
$id_mem=$field2["id"];
$name=$field2["name"];
$surname=$field2["surname"];
$address=$field2["address"];
$phone=$field2["phone"];
$date1=$field2["date"];
$status=$field2["status_pay"];
$status_pro=$field2["status_pro"];
$id_pr=$field2["product_id"];
?>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ใบสั่งซื้อ</title>
<link href="OTOPSatun/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style6 {
font-size: 14px;
font-family: "MS Sans Serif", Tahoma, "Cordia New";
}
.style8 {
font-family: "MS Sans Serif", Tahoma, "Cordia New";
font-size: 16px;
}
.style11 {text-decoration: none; font-family: Tahoma, "MS Sans Serif", CordiaUPC;}
.style12 {font-family: "MS Sans Serif", Tahoma, "Cordia New"}
.style13 {
color: #000000;
text-decoration: none;
font-size: 14px;
font-weight: bold;
}
.style14 {
text-decoration: none;
color: #993399;
font-size: 14px;
font-weight: bold;
}
.style30 {font-size: 14px}
.style33 {text-decoration: none; color: #000000;}
.style34 {
font-family: "MS Sans Serif", Tahoma, "Cordia New";
font-weight: bold;
}
.style39 {text-decoration: none; color: #FF0000;}
.style48 {font-size: 14px; font-family: "MS Sans Serif", Tahoma, "Cordia New"; font-weight: bold; }
.style55 {font-family: "MS Sans Serif", Tahoma, "Cordia New"; font-size: 16px; font-weight: bold; }
.style20 {font-family: Geneva, Arial, Helvetica, sans-serif;
color: #000000;
}
.style46 {text-decoration: none}
.style47 {color: #000000}
.style49 {color: #000000; text-decoration: none; font-size: 12px;}
.style54 {font-family: "MS Sans Serif", Tahoma, "Cordia New"; color: #000000; font-size: 16px; font-weight: bold; }
.style60 {text-decoration: none; font-family: Tahoma, "MS Sans Serif", CordiaUPC; font-size: 18px; }
.style61 {font-size: 16px}
.style62 {text-decoration: none; color: #000000; font-size: 16px; }
-->
</style>
</head>
<body>
<table width="730" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th scope="col"> </th>
<th width="355" scope="col"> </th>
<th width="347" scope="col"> </th>
<th scope="col"> </th>
</tr>
<tr>
<th width="15" height="29" scope="col"> </th>
<th colspan="2" align="center" scope="col"><span class="black_14 style8"><span class="style60">ใบสั่งซื้อสินค้า</span></span></th>
<th width="13" scope="col"> </th>
</tr>
<tr>
<td> </td>
<td align="left" valign="top" class="black_13"> </td>
<td align="right" valign="top"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td align="left" valign="top" class="black_13"><strong class="black_12"><span class="style6">เลขที่ใบสั่งซื้อ</span> <span class="style6">: </span></strong><strong><? echo $id_order;?></strong></td>
<td align="right" valign="top"><strong class="black_12 style12"><span class="style13 style12 style61"> วันที่ : <?php echo thaicurrentday(date("Y-m-d"), 0, 0, 0); ?> เวลา : <?php echo date("h:i:s"); ?></span><span class="style14"> </span></strong></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td class="style48">ร้านตุ๊กตาโครเชต์</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td colspan="2" class="black_12"><span class="style48">189/2 หมู่ 2 ตำบลธงชัย อำเภอบางสะพาน </span></td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td class="style48"><span class="style49"><span class="style30">จังหวัดประจวบคีรีขันธ์ </span></span>77190</td>
<td align="right" class="black_12"><div align="left"><span class="style6"><strong><span class="style33"> รหัสลูกค้า</span><span class="style33"> : <span class="style48"><span class="style55"><? echo $id_mem;?></span></span> </span> </strong></span></div></td>
<td> </td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td><span class="black_12 style12 style30"><span class="style12 style11"><span class="style12 style11"><strong><span class="style11 style12">เบอร์โทรศัพท์ 08-4320-8468 </span></strong></span></span></span></td>
<td align="right"><div align="left"><span class="black_13 style12 style30"><span class="style34"> ชื่อ-สกุล : <span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $name;?></span></span></span></span>-<span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $surname;?></span></span></span></span></span></span></div></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><div align="left"><span class="style6"><strong> โทรศัพท:์</strong> <strong><span class="style20"><span class="style55"><? echo $phone;?></span></span> </strong></span></div></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"><table width="602" border="1" cellpadding="0" cellspacing="0">
<tr>
<th width="88" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">รหัสสินค้า</strong></th>
<th width="195" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">ชื่อสินค้า</strong></th>
<th width="86" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">ราคา</strong></th>
<th width="56" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">จำนวน</strong></th>
<th width="72" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><strong class="style6">ค่าจัดส่ง</strong></th>
<th width="91" align="center" bordercolor="#000000" bgcolor="#E8E8E9" scope="col"><span class="style6"><strong>รวมเงิน</strong></span></th>
</tr>
<?
while($field = mysql_fetch_array($tableorder))
{
?>
<tr>
<td align="left" bordercolor="#000000" class="black_13 style12">
<div align="center"><span class="style30"> <strong><?php echo $field["product_id"]; ?></strong></span> </div></td>
<td align="left" bordercolor="#000000" class="black_13 style12 style30"> <strong><?php echo $field["name_pr"]; ?></strong></td>
<td align="right" bordercolor="#000000" class="black_13 style12 style30"><strong><?php echo number_format( $field["price2"], 2, ".", ","); ?></strong> </td>
<td align="center" bordercolor="#000000"><span class="black_13 style12 style30"><span class="style12 style30 style11"><strong><?php echo number_format( $field["amount1"], 0 ,".", ","); ?></strong></span></span></td>
<td align="right" bordercolor="#000000"><span class="black_13 style12 style30"><span class="style12 style30 style11"><strong><strong><?php echo number_format( $field["price3"], 2, ".", ","); ?></strong> </strong></span></span></td>
<td width="91" align="right" bordercolor="#000000"><span class="black_13 style12 style30"><span class="style12 style30 style11"><span class="style8"><strong><strong><span class="style33"><span class="style46"><strong><span class="style47"><strong>
<?=number_format($field["price2"]*$field["amount1"]+$field["price3"],2,".",",")?>
</strong></span></strong></span></span></strong></strong></span></span></span> </td>
</tr>
<?
$sum+=$field["price2"]*$field["amount1"]+$field["price3"];
?>
<?
}
?>
</table>
</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"><table width="357" border="0" align="right" cellpadding="2" cellspacing="0">
<tr>
<th width="240" height="23" align="right" class="black_14_underline" scope="col"><span class="style6"><strong>ยอดรวมทั้งสิ้น</strong></span></th>
<th width="9" align="center" class="black_13 style12 style30" scope="col">:</th>
<th width="53" align="right" class="black_14" scope="col"><span class="style6"><span class="bubble_14"><strong class="black_13 style12 style30">
<?=number_format($sum ,2, ".", ",");?>
</strong></span></span></th>
<th width="86" align="right" class="black_14" scope="col"><div align="left"><span class="style6"><strong>บาท </strong></span></div></th>
</tr>
</table></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="right"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="left">
<!-- แสดงกำหนดวันสิ้นสุดชำระเงินค่ามัดจำ โดยเรียกใช้ฟังก์ชั่น thaicurrentday เพื่อแสดงวันที่ภาษาไทย โดยบวกจำนวนวันที่ต้องชำระเงินมัดจำ สมมติ กำหนดไว้ 5 วัน ก็จะบวกจากวันปัจจุบันไปอีก 5 วัน เช่น 2010-05-02 -> 07/05/2010 -->
<span class="style6"><strong><span class="style39">หมายเหตุ : </span><span class="style62">กรุณาชำระเงินก่อนวันที่ : </span></strong></span><span class="style62"><strong class="black_12 style12"><?php echo thaicurrentday(date("Y-m-d"), $fddayexpire, 0, 0); ?></strong><strong></strong></span><span class="style6"><span class="style61"><strong><span class="style33"> (<?php echo $fddayexpire; ?> วัน)</span></strong></span></span> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" class="style6"><strong>สามารถชำระเงินได้ที่ตู้ ATM หรือเคาน์เตอร์ธนาคาร</strong></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2"><table width="700" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="140" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">ชื่อธนาคาร</th>
<th width="106" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">สาขา</th>
<th width="127" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">เลขที่บัญชี</th>
<th width="151" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">ชื่อบัญชี</th>
<th width="164" align="center" bordercolor="#000000" bgcolor="#E8E8E9" class="style6" scope="col">ประเภทบัญชี</th>
</tr>
<tr>
<td align="left" valign="middle" bordercolor="#000000" class="style6"> กรุงไทย</td>
<td align="left" valign="middle" bordercolor="#000000"> <span class="style12">พระนคร</span></td>
<td align="center" valign="middle" bordercolor="#000000" class="style6">7310157788</td>
<td align="left" valign="middle" bordercolor="#000000" class="style6"> รุ่งอรุณ ปานสีสุข </td>
<td align="left" valign="middle" bordercolor="#000000"><div align="center"><span class="style12">ออมทรัพย์</span></div></td>
</tr>
</table></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td class="style6"> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td class="style6"><strong>ชื่อ-ที่อยู่ในการจัดส่งสินค้า</strong></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"><table width="646" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="49" align="right" scope="col"><span class="black_13 style12 style30"><span class="style34">คุณ</span></span></th>
<th width="4" align="left" scope="col"> </th>
<th width="466" align="left" class="black_13" scope="col"><span class="style6"><span class="black_13 style12 style30"><span class="style34"><span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $name;?></span></span></span></span> <span class="black_12"><span class="style48"><span class="style20"><span class="style55"><? echo $surname;?></span></span></span></span></span></span></span></th>
</tr>
<tr>
<td> </td>
<td width="4"> </td>
<td align="left" class="black_13"><span class="style6"><span class="style54"><? echo $address;?></span></span></td>
</tr>
</table></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td colspan="2" align="center"> <input onClick="javascript:window.print()" type="button" value="พิมพ์" />
<input type="submit" name="Submit" value="กลับหน้าหลัก"onClick="window.location='main.php'"/></td><td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
|
|
|
|
|
Date :
2012-02-25 12:10:14 |
By :
HaKonNan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|