ขึ้นแบบนี้ควนแก้ไขยังไงครับ Notice: Undefined variable: Sumdiscount in C:\xampp\htdocs\Ecommerce\show.php on line 84

กระทู้คำถาม
Notice: Undefined variable: Sumdiscount in C:\xampp\htdocs\Ecommerce\show.php on line 84

Notice: Undefined variable: discount in C:\xampp\htdocs\Ecommerce\show.php on line 85

ขึ้นมาแบบนี้เลยครับคัยรู้ชวยบอกที
Notice: Undefined variable: Sumdiscount in C:\xampp\htdocs\Ecommerce\show.php on line 84

Notice: Undefined variable: discount in C:\xampp\htdocs\Ecommerce\show.php on line 85

Notice: Undefined variable: Sumdiscount in C:\xampp\htdocs\Ecommerce\show.php on line 84

Notice: Undefined variable: discount in C:\xampp\htdocs\Ecommerce\show.php on line 85

Notice: Undefined variable: Sumdiscount in C:\xampp\htdocs\Ecommerce\show.php on line 84

Notice: Undefined variable: discount in C:\xampp\htdocs\Ecommerce\show.php on line 85
โคสหนี้นี้คือ
<!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"><!-- InstanceBegin template="/Templates/MemberTemplate.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
</head>
<style>
li{background:#f3fdfe;
    font-size:24px;
    height:40px;
    width:200px;
    border:#0e92a0 1px solid;
    list-style-type:none;
    cursor:pointer;}
</style>
<body>

<div align="center">

<table width="1024" border="0">
    <tr>
    <td colspan="2"><img src="Books_01.png" width="1024" height="200" /></td>
    </tr>
    <tr>
    <td width="200" align="left" valign="top">
    <a href="Home.php"><li>หน้าหลัก</li></a>
    <a href="Show_product_member.php">
    <li>รายการสินค้า</li></a>
    <a href="show.php"><li>ข้อมูลการสั่งซื้อ</li></a>
    <a href="checkout.php">
    <li>ยืนยันการสั่งซื้อ</li>
    <a href="com.php"><li>ติดต่อ</li>
    </a><a href="#"></a>
    </td>
    <td width="808" bgcolor="#CCCCCC" valign="top"><!-- InstanceBeginEditable name="EditRegion3" --><?php
    include('connect.php');
    ob_start();
    session_start();
    if(!isset($_SESSION["intLine"]))
    {
        echo "ตระกร้าในสินค้าว่าง";
        exit();
    }
    ?>
      <table width="100%" border="0">
        <tr>
          <td align="center"><h3>ข้อมูลการสั่งซื้อ</h3></td>
        </tr>
        <tr>
          <td align="center">&nbsp;</td>
        </tr>
      </table>
      <table width="820" border="1">
        <tr>
          <td>ชื่อสินค้า</td>
          <td>ชนิดสินค้า</td>
          <td>รายละเอียด</td>
          <td>รูปสินค้า</td>
          <td>ราคา</td>
          <td>จำนวน</td>
          <td>รวมเงิน</td>
          <td>ลบ</td>
          </tr>
        <?php
        $Total = 0;
        $SumTotal = 0;
        
        for($i=0;$i<=(int)$_SESSION["intLine"];$i++)
        
        {
            if($_SESSION["strProductID"][$i] != "")
            {
                $strSQL = "SELECT * FROM product,type  WHERE product.type_id=type.type_id and product_id = '".$_SESSION["strProductID"][$i]."' ";
                $objQuery = mysql_query($strSQL)  or die(mysql_error());
                $product_row = mysql_fetch_array($objQuery);
                $Total = $_SESSION["strQty"][$i] * $product_row["product_price"];
                $SumTotal = $SumTotal + $Total;
                
                
                $Sum = $SumTotal - $Sumdiscount;
                $SumProduct = $Total - $discount;
        ?>
        <tr>
          <td><?=$product_row['product_name'];?></td>
          <td><?=$product_row['type_name'];?></td>
          <td><?=$product_row['product_detail'];?></td>
          <td><img src="product_pic/<?=$product_row['product_pic'];?>" alt="" width="100" /></td>
          <td><?=number_format($product_row['product_price'],2);?></td>
          <td><?php echo $_SESSION["strQty"][$i];?></td>
          <td><?php echo number_format($SumProduct,2);?></td>
          <td><a href="delete_order.php?Line=<?php echo $i;?>">ลบ</a></td>
          </tr>
        <?php }}?>
      </table>
      <p><br>
        <a href="Show_product_member.php">กลับไปยัง รายการสินค้า</a>
        <?php
    if($SumTotal > 0)
    {
    ?>
        | <a href="checkout.php">ยืนยันการสั่งซื้อ</a>
        <?php
    }
    ?>
      </p>
      <p>&nbsp;</p>
    <!-- InstanceEndEditable --></td>
    </tr>
    <tr>
    <td height="50" colspan="2" align="center" bgcolor="#99FFCC"><p>นายวิศววิท เอื้ออวยชัย 15632155 เทคโนโลยีสารสนเทศ</p>
      <p>นายวรวุฒิ น้อยโภยภัย 15632238 เทคโนโลยีสารสนเทศ</p>
      <p>    User  Admin   Password   123456</p></td>
    </tr>
</table>

  </div>

</body>
<!-- InstanceEnd --></html>
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่