|
|
|
ช่วยดูโค้ดหน่อยค่ะ insert ไม่ลงฐานข้อมูลค่ะ พอดีทำเกี่ยวกับการสั่งซื้อ ช่วยด้วยๆๆๆ นะค่ะ ทำไม่ได้จริงๆ |
|
|
|
|
|
|
|
คือหนูทำเกี่ยวกับการสั่งซื้อค่ะ แต่พอ insert ข้อมูลแล้ว ตาราง tb_buypsd ข้อมูลบันทึกลงค่ะ แค่ ตาราง tb_buypsddetail บันทึกไม่ลงค่ะ
โค้ด... psd_order1
Code (PHP)
<?php
ob_start();
session_start();
?>
<!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>
</head>
<body>
<p>
[ <a href="psd_index.php"> หน้าแรก</a> ]
[ <a href="psd_basketadd.php"> ดูตะกร้าสินค้า</a> ]
</p>
<?php
if (count($sess_id)==0){
echo "ยังไม่มีสินค้าอยู่ในตะกร้า <br>";
}else{
?>
</p>
<form id="form1" name="form1" method="post" action="psd_orderchk.php">
<p><h3 align="center">ใบสั่งซื้อสินค้า</h3></p>
<table width="74%" border="0" cellspacing="4" cellpadding="2">
<tr>
<td width="37%"> </td>
<td width="14%"> </td>
<td width="19%"> </td>
<td width="30%"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>เรียนเจ้าของร้าน</td>
<td><label>
<select name="ref_id_agent" id="select">
<option value="1">เลือกตัวแทนจำหน่าย</option>
<?php
include "connect.php";
$sql="select * from tb_agent";
$result=mysql_db_query($dbname,$sql);
while($record=mysql_fetch_array($result)){
$id_agent=$record[id_agent];
$name_agent=$record[name_agent];
echo "<option value='$id_agent'>$name_agent</option>";
}
?>
</select>
</label></td>
<td> </td>
</tr>
</table>
<p> </p>
<table width="600" border="1" align="center" cellpadding="1" cellspacing="0" bordercolor="#666666">
<tr bgcolor="#FFFFCC">
<td width="6%"><center><b>รหัส<br>สินค้า</b></center></td>
<td width="60%" bgcolor="#FFFFCC"><center><b>ชื่อสินค้า</b>
</center></td>
<td width="12%"><center><b>จำนวน</b></center></td>
<td width="10%"><center><b>ราคา</b></center></td>
<td width="12%"><center><b>รวม</b></center></td>
</tr>
<?php
for ($i=0;$i<count($sess_id);$i++){
$total_unit=$sess_num[$i]*$sess_price[$i];
$total=$total+$total_unit;
$code=sprintf("%05d",$sess_id[$i]);
echo '
<tr>
<td>'.$code.'
<input type="hidden" name="code_'.$i.'" value="'.$code.'">
</td>
<td>'.$sess_name[$i].' $sess_name[$i]
<input type="hidden" name="name_'.$i.'" value="'.$sess_name[$i].'">
</td>
<td>'.$sess_num[$i].'<center>$sess_num[$i]
<input type="hidden" name="num_'.$i.'" value="'.$sess_num[$i].'"></center></td>
<td>'.$sess_price[$i].'<center>$sess_price[$i]
<input type="hidden" name="price_'.$i.'" value="'.$sess_price[$i].'"></center></td>
</center></td>
<td>'.$total_unit.'<center>$total_unit
<input type="hidden" name="total_'.$i.'" value="'.$toal_unit.'"></center></td></center>
</td></tr>';
}
?>
</table>
<table width="79%" border="0" cellspacing="4" cellpadding="0">
<tr>
<td width="75%"> </td>
<td width="25%"><?php echo "จำนวนเงินทั้งหมด $total บาท";?></td>
</tr>
</table>
<p> </p>
<div align="center">
<input type="submit" value="ตกลง" />
<input type="reset" value="ยกเลิก" />
<input type="hidden" name="total_order" value="<?=$total?>" />
<br>
<br>
<br>
</div>
</form>
<?
}
?>
</body>
</html>
code psd_orderchk
Code (PHP)
<?php
ob_start();
session_start();
?>
<!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>Untitled Document</title>
</head>
<body>
<p>
<?php
echo var_dump($_POST);
include "connect.php";
$i=0;
$date_buypsd=date("Y-m-d");
$sql="insert into tb_buypasadu value(null,'".$_POST['ref_id_agent']."','".$_POST['total_order']."','$date_buypsd','A',null)";
$sql2="select max(id_buypsd) from tb_buypasadu ";
$result2=mysql_db_query($dbname,$sql2);
$row=mysql_fetch_row($result2);
//echo $sql ;
mysql_db_query($dbname,$sql);
foreach ($_POST as $key => $val) {
if(substr($key, 0, 5) == 'code_'){
$sql3="insert into tb_buypsddetail(ref_id_buypsd,ref_id_psd,number,price) values('$row[0]','".$_POST["code_".$i]."','".$_POST['num_'.$i]."','".$_POST['price_'.$i]."')";
echo $sql3;
mysql_db_query($dbname,$sql3);
$i++ ;
}
}
/*
$ref_id_agent=$_POST[ref_id_agent];
$total_order=$_POST[total_order];
$datenow=date("Y-m-d");
include "connect.php";
$sql="insert into tb_buypasadu value(null,$ref_id_agent,$total_order,'$datenow')";
mysql_db_query($dbname,$sql);
$sql2="select max(id_buypsd) from tb_buypasadu ";
$result2=mysql_db_query($dbname,$sql2);
$row=mysql_fetch_row($result2);
for ($i=0;$i<count($sess_id);$i++){
$sql3="insert into tb_buypsddetail values('$row[0]','$sess_id[$i]','$sess_num[$i]'
,'$sess_price[$i]')";
mysql_db_query($dbname,$sql3);
}
session_unregister("sess_id");
session_unregister("sess_price");
session_unregister("sess_num");
echo "<h3>บันทึกใบสั่งซื้อเรียบร้อยแล้ว</h3>";
mysql_close();
</p>
<p><a href="index_psd.php">หน้าแรก</a> </p>
*/
echo "<h3>บันทึกใบสั่งซื้อเรียบร้อยแล้ว</h3>";
echo "[ <a href=index_psd.php>หน้าหลัก</a> ] ";
?>
</body>
</html>
ช่วยหน่อยนะค่ะ ทำไม่ได้จริงๆ ค่ะ งือๆๆ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-03-08 20:24:31 |
By :
vevii |
View :
942 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆ ค่ะ
mr.win ค่ะ คือตอนนี้บันทึกลงฐานข้อมูลได้แล้วค่ะ แต่ติดปัญหาตรงที่ว่า พอเราสั่งซื้อมากกว่า 1 รายการ คือรหัสของตาราง tb_buypasadu กับ tb_buypsddetail ไม่ตรงกันค่ะ ทำให้มีปัญหาตอนรับเข้า เช่น สั่งซื้อ ดินสอ ปากกา ตาราง tb_buypasadu จะเป็นตารางรวมค่ะ คือจะรวมราคาทั้งหมด แต่ตารางtb_buypsddetail จะเป็นตารางแจงรายละเอียดค่ะ รหัสของทั้งสองตารางไม่ตรงกันค่ะ
ช่วยด้วยเถอะนะค่ะ ไม่รู้จะแก้ยังไงแล้ว งือๆๆ ขอบคุณค่ะ
|
|
|
|
|
Date :
2012-03-09 00:55:20 |
By :
vevii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หว่าๆๆๆ ช่วยหนูหน่อยนะค๊าาาาา ติดแค่อันเดียวก็จะสำเร็จ :)
|
|
|
|
|
Date :
2012-03-09 02:44:03 |
By :
vevii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|