มีเรื่องรบกวนอีกแล้วค่ะ คือว่ามันเกิด warning ตอนหยิบสินค้าลงตะกร้าค่ะ ช่วยกันดูให้หน่อยนะค้ะ ขอบคุณล่วงหน้าค่ะ
Code (PHP)
<?
ob_start();
session_start();
$Product_id=$_GET[Product_id];
ลองใส่ ob_start(); ดูครับ
Date :
2011-10-25 06:23:10
By :
webmaster
ได้แล้วค่ะ ขอบคุณมากค่ะคุณ mr.win
Date :
2011-10-25 20:16:36
By :
nhamkangsai
ขอถามต่อนะค้ะ คือว่าหนูทำข้อมูลการจัดส่งสินค้าค่ะ ซึ่งจะต่อจากการขายสินค้า ซึ่งมี 2 ตารางคือ
sell(sell_id,Cus_id,Address,Emp_id,total_sell,date_sell) แล้วก็ตาราง sell_detail(ref_sell_id,ref_pro_id,num_pro,price) โดยการดึง
เอาข้อมูลจากการขายมาแสดงในฟอร์มการจัดส่ง
แล้วมีการกรอกข้อมูลเพิ่ม แล้วบันทึกลงในฐานข้อมูลการจัดส่ง ซึ่งมี 2 ตาราง คือ send (send_id,sell_id,Emp_id,date_send) และ
send_detail (ref_send_id,ref_pro_id,num_pro,price)
มีปัญหาเกิดขึ้นคือ ตอนบันทึกข้อมูลลงเฉพาะตาราง send แต่ฟิวด์ sell_id ไม่ลงค่ะ แล้วก็ตาราง send_detail ไม่ลงเหมือนกันค่ะ หนูว่าหนู
เขียนโค้ดผิดแหละค่ะ แต่ไม่รู้ว่ามันผิดยังไง รบกวนดูให้หน่อยนะค้ะ
มีโค้ดทั้งหมด 3 ไฟล์ค่ะ
1. admin_send_pro.php
Code
<?
session_start();
include "connect.php";
$sql="select * from sell ";
$result=mysql_db_query($dbname,$sql);
$number=mysql_num_rows($result);
$no=1;
?>
<!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=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<table width="700" align="center">
<tr>
<td bgcolor="#CCFFFF">
<center>
<?
include "admin_sell_menu.php";
if ($number<>0) {
echo "
<P><B>ใบขายสินค้า</B></P>
<TABLE BORDER=1 width='600' bgcolor='FFFFFF'>
<TR BGCOLOR=#E8E8E8>
<TD><CENTER><B>เลขที่ใบขายสินค้า</B></CENTER></TD>
<TD><CENTER><B>ชื่อ - สกุลลูกค้า</B></CENTER></TD>
<TD><CENTER><B>ราคารวม</B></CENTER></TD>
<TD><CENTER><B>[ส่ง]</B></CENTER></TD>
</TR> ";
while($rs=mysql_fetch_array($result)) {
$sell_id=$rs[sell_id];
$code_sell=sprintf("%05d",$sell_id);
$Cus_id=$rs[Cus_id];
$total_sell=$rs[total_sell];
$sql2="select FtName,LtName from customer where Cus_id='$Cus_id' ";
$result2=mysql_db_query($dbname,$sql2);
$rs2=mysql_fetch_array($result2);
$FtName=$rs2[FtName];
$LtName=$rs2[LtName];
echo "
<TR>
<TD><A HREF=\"admin_sell_view.php?sell_id=$sell_id\" TARGET=\"_blank\">$code_sell</A></TD>
<TD>$FtName $LtName</TD>
<TD><CENTER>$total_sell</CENTER></TD>
<TD><A HREF=\"admin_send_product.php?sell_id=$sell_id\"><img src='images/pencil.jpg' border='0'></A></TD>
</TR>
</TR>";
$no++;
}
echo "</TABLE>";
mysql_close();
}
?>
<p>
</td>
</tr>
</table>
</body>
</html>
2. admin_send_product.php
Code
<?
session_start();
$sell_id=$_GET[sell_id];
$Product_id=$_GET[Product_id];
include "connect.php";
$sql="select * from sell where sell_id='$sell_id' ";
$result=mysql_db_query($dbname,$sql);
$rs=mysql_fetch_array($result);
$sell_id=$rs[sell_id];
$code_sell=sprintf("%05d",$sell_id);
$Cus_id=$rs[Cus_id];
$Address=$rs[Address];
$Emp_id=$rs[Emp_id];
$datenow=$rs[date_sell];
$total_sell=$rs[total_sell];
$sql2="select FtName,LtName from customer where Cus_id='$Cus_id' ";
$result2=mysql_db_query($dbname,$sql2);
$rs2=mysql_fetch_array($result2);
$FtName=$rs2[FtName];
$LtName=$rs2[LtName];
$sql3="select FtName,LtName from employee where Emp_id='$Emp_id' ";
$result3=mysql_db_query($dbname,$sql3);
$rs3=mysql_fetch_array($result3);
$FtName_Emp=$rs3[FtName];
$LtName_Emp=$rs3[LtName];
?>
<!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=windows-874" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {
font-family: tahoma;
font-size: 14px;
font-weight: bold;
color: #000000;
}
-->
</style>
</head>
<body>
<table width="700" align="center">
<tr>
<td bgcolor="#CCFFFF"><p> </p>
<table width="650" align="center" bgcolor="#FFFFFF">
<tr>
<td><form method="post" action="admin_send_product2.php">
<p></p>
<center>
<h3 class="style8">ใบส่งสินค้า</h3>
</center>
</P>
<table width="550" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#FFFFCC">
<tr>
<td height="30" class="style1" style="padding-left:10px">เลขที่ใบเสร็จ : </td>
<td><?=$code_sell?></td>
</tr>
<tr>
<td width="124" height="30" class="style1"><span class="style7 style1" style="padding-left:10px">ชื่อ - สกุล : </span></td>
<td width="373"><?=$FtName?> <?=$LtName?> </td>
</tr>
<tr>
<td height="30" class="style1" style="padding-left:10px">ที่อยู่สำหรับจัดส่ง : </td>
<td><?=$Address?></td>
</tr>
<tr>
<td height="30" class="style1" style="padding-left:10px">พนักงานขาย : </td>
<td><?=$FtName_Emp?> <?=$LtName_Emp?></td>
</tr>
<tr>
<td height="30" class="style1" style="padding-left:10px">วันที่ขาย : </td>
<td> <?=$datenow?> </td>
</tr>
<tr>
<td height="30" class="style1" style="padding-left:10px">พนักงานส่ง : </td>
<td><SELECT NAME="Emp_id">
<OPTION VALUE="0" >---เลือกพนักงานส่งสินค้า---</OPTION>
<?
include "connect.php";
$sql="select * from employee";
$result=mysql_db_query($dbname,$sql);
while($rs=mysql_fetch_array($result)) {
$Emp_id2=$rs[Emp_id];
$FtName=$rs[FtName];
$LtName=$rs[LtName];
echo "<OPTION VALUE='$Emp_id2'>$FtName $LtName</OPTION>";
}
?>
</SELECT></td>
</tr>
</table>
<br />
<table width="600" border="1" align="center">
<tr bgcolor="#E8E8E8">
<td width="21%" class="style9"><center>
<span class="style9">รหัสสินค้า</span>
</center></td>
<td width="40%" class="style9"><center>
<b>ชื่อสินค้า</b>
</center></td>
<td width="13%" class="style9"><center>
<b>จำนวน</b>
</center></td>
<td width="14%" class="style9"><center>
<b>ราคา</b>
</center></td>
<td width="12%" class="style9"><center>
<b>รวม</b>
</center></td>
</tr>
<?
$sql=" SELECT product.Product_name,sell_detail.ref_pro_id,sell_detail.num_pro,sell_detail.price
from product,sell_detail
where ref_pro_id=Product_id and ref_sell_id='$sell_id' ";
$result=mysql_db_query($dbname,$sql);
while ($rs=mysql_fetch_array($result)) {
$ref_pro_id=$rs[ref_pro_id];
$code_pro=sprintf("%05d",$ref_pro_id);
$Product_name=$rs[Product_name];
$num_pro=$rs[num_pro];
$price=$rs[price];
$total_unit=$num_pro*$price;
$total=$total+$total_unit;
echo "
<TR>
<TD>$code_pro</TD>
<TD>$Product_name</TD>
<TD><CENTER>$num_pro</CENTER></TD>
<TD><CENTER>$price</CENTER></TD>
<TD><CENTER>$total_unit</CENTER></TD>
</TR>";
}
?>
</table>
<center><br />
<? echo "จำนวนเงินทั้งหมด $total บาท"; ?> <br />
<br />
<input name="submit" type="submit" value="Submit" />
<input name="reset" type="reset" value="Reset" />
</P></center>
</form>
</td>
</tr>
</table>
<p> </p></td>
</table>
</body>
</html>
3. admin_send_product2.php
Code
<?
session_start();
$sell_id=$_POST[sell_id];
$code_sell=sprintf("%05d",$sell_id);
$Cus_id=$_POST[Cus_id];
$Address=$_POST[Address];
$Emp_id=$_POST[Emp_id];
$datenow=$_POST[date_sell];
$Emp_id2=$_POST[Emp_id];
$status_pro=$_POST[status_pro];
$total_sell=$_POST[total_sell];
if ($Emp_id2=="0") {
echo "<H3>ERROR : กรุณาเลือก พนักงานส่ง</H3>";
exit();
}
$date_send=date("Y-m-d");
include "connect.php";
$sql="insert into send values(null,'$sell_id','$Emp_id2','$date_send') ";
mysql_db_query($dbname,$sql);
$sql2="select max(send_id) from send ";
$result2=mysql_db_query($dbname,$sql2);
$row=mysql_fetch_row($result2);
for ($i=0;$i<count($sess_id);$i++) {
$sql3="insert into send_detail values('$row[0]','$sess_id[$i]','$sess_num[$i]','$sess_price[$i]') ";
mysql_db_query($dbname,$sql3);
}
session_unregister("sess_id");
session_unregister("sess_name");
session_unregister("sess_price");
session_unregister("sess_num");
echo "<H3> รายการส่งสินค้าถูกบันทึกเรียบร้อยแล้วค่ะ <A HREF=admin_send_all.php><br>แสดงใบส่งทั้งหมด</br></A>";
mysql_close();
?>
<!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=windows-874" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
ประวัติการแก้ไข 2011-10-26 18:11:05
Date :
2011-10-26 18:06:00
By :
nhamkangsai
Load balance : Server 01