<?php session_start(); ?> <html> <head> <title>ThaiCreate.Com</title> <meta http-equiv="Content-Type" content="text/html; charset=tis-620"> </head> <style type="text/css"> #table { color: #333; /* Lighten up font color */ font-family: Helvetica, Arial, sans-serif; /* Nicer font */ border-collapse: collapse; border-spacing: 0; } #table td, th { border: 1px solid #CCC; height: 30px; } /* Make cells a bit taller */ th { font-weight: bold; /* Make sure they're bold */ } #table td { text-align: center; /* Center our text */ } </style> <?php mysql_connect("localhost","jidapash_jida","0898962388"); mysql_select_db("jidapash_jida"); mysql_query("SET character_set_results=tis620"); mysql_query("SET character_set_client=tis620"); mysql_query("SET character_set_connection=tis620"); ?> <table width="90%" border="1" id="table"> <tr bgcolor="#e6e6e6"> <td width="101">ProductID</td> <td width="82">ProductName</td> <td width="82">Price</td> <td width="79">Qty</td> <td width="79">Total</td> </tr> <?php $Total = 0; $SumTotal = 0; for($i=0;$i<=(int)$_SESSION["intLine"];$i++) { if($_SESSION["strproductno"][$i] != "") { $strSQL = "SELECT * FROM product WHERE productno = '".$_SESSION["strproductno"][$i]."' "; $objQuery = mysql_query($strSQL) or die(mysql_error()); $objResult = mysql_fetch_array($objQuery); $Total = $_SESSION["strqty"][$i] * $objResult["price"]; $SumTotal = $SumTotal + $Total; ?> <tr> <td><?php echo $_SESSION["strproductno"][$i];?></td> <td><?php echo $objResult["name"];?></td> <td><?php echo $objResult["price"];?></td> <td><?php echo $_SESSION["strqty"][$i];?></td> <td><?php echo number_format($Total,2);?></td> </tr> <?php } } ?> </table> Sum Total <?php echo number_format($SumTotal,2);?> <br><br> <?php include("shippingaddress.php"); ?> <?php mysql_close(); ?> </body> </html>
$sum = $sum + $_SESSION["strqty"][$i];
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง