foreach($_SESSION['cal_product'] as $p_id=>$rs) //นำสินค้าที่เลือกมาเก็บไว้ใน Table
{
//การณีที่มีการ Add สินค้ามาทีหลัง และ Id ไม่ตรงกับ ในตะกร้า
$sql="select * from productssuppliers p
inner join products a on p.ProductID=a.ProductID
inner join units b on a.UnitID =b.Unit_id
inner join category c on a.CategoryID=c.CategoryID
where p.ProductID='$p_id'";
}
$querys=mysql_query($sql) or die ("Error Query [".$sql."]");
$row=mysql_fetch_array($querys);
//echo "rs 1 :".$rs[1]."<br>";
$unt=$rs[2];
$discount =number_format($rs[3]);
foreach ($_SESSION['cart'] as $p_id )
{
//var_dump($p_id);
$sql="select * from productssuppliers p
inner join products a on p.ProductID = a.ProductID
inner join units b on a.UnitID = b.Unit_id
inner join category c on a.CategoryID = c.CategoryID
where p.ProductID = '$p_id'";
$query = mysql_query($sql);
$row = mysql_fetch_array($query);
$cal_Proid = $row['0'];
$_SESSION['qty'][$cal_Proid]=$_POST['Amount'][$p_id];
$_SESSION['unit'][$cal_Proid]=$_POST['Unit_p'][$p_id];
$_SESSION['discount'][$cal_Proid]=$_POST['Distcount_p'][$p_id];