<?php session_start(); if(!isset($_SESSION["intLine"])) { if(isset($_POST["txtProductID"])) { $_SESSION["intLine"] = 0; $_SESSION["strProductID"][0] = $_POST["txtProductID"]; $_SESSION["strProductSize"][0] = $_POST["txtProductSize"]; $_SESSION["strQty"][0] = $_POST["txtQty"]; $_SESSION["strProductColor"][0] = $_POST["txtProductColor"]; header("location:page_order_product.php"); } } else { $key = array_search($_POST["txtProductID"], $_SESSION["strProductID"]); $key = array_search($_POST["txtProductSize"], $_SESSION["strProductSize"]); $key = array_search($_POST["txtProductColor"], $_SESSION["strProductColor"]); if((string)$key != "") { $_SESSION["strQty"][$key] = $_SESSION["strQty"][$key] + $_POST["txtQty"]; } else { $_SESSION["intLine"] = $_SESSION["intLine"] + 1; $intNewLine = $_SESSION["intLine"]; $_SESSION["strProductID"][$intNewLine] = $_POST["txtProductID"]; $_SESSION["strProductSize"][$intNewLine] = $_POST["txtProductSize"]; $_SESSION["strProductColor"][$intNewLine] = $_POST["txtProductColor"]; $_SESSION["strQty"][$intNewLine] = $_POST["txtQty"]; } header("location:page_order_product.php"); } ?> <?php /* This code download from www.ThaiCreate.Com */ ?>
$_SESSION["intLine"] = 0; $_SESSION["strProductID"] = array( $_POST["txtProductID"] ); $_SESSION["strProductSize"] = array( $_POST["txtProductSize"] ); $_SESSION["strQty"] = array( $_POST["txtQty"] ); $_SESSION["strProductColor"] = array( $_POST["txtProductColor"] );
$key1 = array_search($_POST["txtProductID"], $_SESSION["strProductID"]); $key2 = array_search($_POST["txtProductSize"], $_SESSION["strProductSize"]); $key3 = array_search($_POST["txtProductColor"], $_SESSION["strProductColor"]); $key = "$key1_$key2_$key3";
$key=$_POST["txtProductID"].'_'.$_POST["txtProductSize"].'_'.$_POST["txtProductColor"]; if( isset( $_SESSION['data'][$key] )){ // มีข้อมูลอยู่แล้ว $_SESSION['data'][$key]['txtQty']+=$_POST["txtQty"]; }else{ // ไม่พบ $_SESSION['data'][$key]=$_POST; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง