Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > PHP > PHP Forum > สอบถาม การเพิ่มสินค้า โดยการแบ่งตาม Sizeสินค้า เเละเเต่ละไซต์มี สีอะไรบ้าง เเละจำนวนกี่ตัว



 

สอบถาม การเพิ่มสินค้า โดยการแบ่งตาม Sizeสินค้า เเละเเต่ละไซต์มี สีอะไรบ้าง เเละจำนวนกี่ตัว

 



Topic : 118744



โพสกระทู้ ( 61 )
บทความ ( 0 )



สถานะออฟไลน์




picture

คำถามเเรกครับ
ผมอยากจะถามว่า ถ้าผมจะแยกออกมาอีกเป็น ในเเต่ละไซต์ มีสีอะไรบ้าง เเละเเต่ละสีมีจำนวนกี่ตัว
เช่น

Size : S
- สีดำ 2 ตัว
-สีขาว 3 ตัว

Size : M
- สีเเดง 3 ตัว
-สีเนื้อ 2 ตัว
**โดยสีผมจะใช้เป็น Checkbox ที่สร้างขึ้นมาเองครับ เเต่ปัญหาที่ผมติดคือจะให้มันวนลูป เก็บลง ฐานข้อมูลยังไงครับ

คำถามที่ 2 ครับ
ผมจะสามารถเอาผมรวม จำนวนสินค้าทั้งหมด มาเเสดงไว้ที่ ช่อง "จำนวนสินค้าทั้งหมด :" ได้หรือไม่ครับ หรือควรจะเป็นอย่างอื่น ช่วยเเนะนำหน่อยครับ

Add_Product.php
Code (PHP)
<? session_start(); ?>
<html>
<head>
<title>Administrator Page</title><?php
	
	if($_SESSION['Admin_ID'] == "")
	{
		?>
	<script type="text/javascript">
	window.location="page_admin_login.php";
</script><?
	}
include("db_connect.php");
	$strSQL = "SELECT * FROM admin WHERE Admin_ID = '".$_SESSION['Admin_ID']."' ";
	$objQuery = mysql_query($strSQL);
	$objResult = mysql_fetch_array($objQuery);
?>
</head>

<body>
<table width="1311" height="1024" border="0" align="center">
  <tr>
    <th height="177" colspan="2" align="center" bgcolor="#CADAFF" scope="col"> <p><img src="picture/logo.png" width="555" height="175"></p></th>
  </tr>
  <tr>
    <td height="31" colspan="2" bgcolor="#BCA6FF"><table width="650" height="27" border="0" align="center">
      <tr>
        <th width="102" bgcolor="#00FF99" scope="col">&nbsp;Username :</th>
        <th width="116" bgcolor="#D6D6D6" scope="col"><?php echo $objResult["Username"];?></th>
        <th width="81" bgcolor="#00FF99" scope="col">Name :</th>
        <th width="227" bgcolor="#D6D6D6" scope="col"><?php echo $objResult["Admin_Name"];?>&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $objResult["Admin_Lasname"];?></th>
        <th width="102" scope="col">&nbsp;&nbsp;<a href="admin_logout.php"><img src="picture/h_logout.gif" width="80" height="26" /></a></th>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td width="117" align="center" valign="top" bgcolor="#EBEBEB"><? include("submenu_admin.html");?></td>
    <td width="1247" height="1024" align="center" valign="top" bgcolor="#EBEBEB"><p><table width="972" height="414" border="1" align="center">
  <tr>
    <th align="center" valign="top" bgcolor="#66FFCC" scope="row"><h1>เพิ่ม รายการสินค้า</h1>
      <form name="form1" method="post" action="Admin_Management_Product_Item_Add_ac.php" enctype="multipart/form-data">
      <table width="755" height="525" border="0">
        <tr>
          <th width="179" align="right" bgcolor="#66FF99" scope="row">รหัสสินค้า : </th>
          <td width="306" bgcolor="#CEFFDE"><input type="text" name="Product_Id" id="Product_Id" /></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row"> ชื่อสินค้า :</th>
          <td bgcolor="#CEFFDE"><input type="text" name="Product_Name" id="Product_Name" /></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">ประเภทสินค้า :</th>
          <td bgcolor="#CEFFDE">
          <select name="Product_Category_ID">
            <option value="">&lt;-- กรุณาเลือก ประเภทสินค้า --&gt;</option>
            <?php
			$strSQL = "SELECT * FROM product_category ORDER BY Category_ID	 ASC";
			$objQuery = mysql_query($strSQL);
			while($objResuut = mysql_fetch_array($objQuery))
			{
			?>
            <option value="<?php echo $objResuut["Category_ID"];?>"><?php echo $objResuut["Category_Name"];?></option>
            <?php
			}
			?>
          </select></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">หมวดหมู่ย่อย :</th>
          <td bgcolor="#CEFFDE"><select name="Sub_ID">
            <option value="">&lt;-- กรุณาเลือก หมวดหมู่ย่อย --&gt;</option>
            <?php
			$strSQL = "SELECT * FROM product_category_sub ORDER BY Sub_ID	 ASC";
			$objQuery = mysql_query($strSQL);
			while($objResuut = mysql_fetch_array($objQuery))
			{
			?>
            <option value="<?php echo $objResuut["Sub_ID"];?>"><?php echo $objResuut["Sub_Name"];?></option>
            <?php
			}
			?>
            </select></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">ราคาต้นทุน :</th>
          <td bgcolor="#CEFFDE"><input type="text" name="Product_Costprice" id="Product_Costprice" /></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">ราคาขาย :</th>
          <td bgcolor="#CEFFDE"><input type="text" name="Product_Saleprice" id="Product_Saleprice" /></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">Picture : </th>
          <td bgcolor="#CEFFDE"><input type="file" name="filUpload" /></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">รายละเอียด :</th>
          <td bgcolor="#CEFFDE"><textarea name="Product_Description" id="Product_Description" cols="45" rows="5"></textarea></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">สถานะสินค้า :</th>
          <td bgcolor="#CEFFDE"> <select name="Product_Status">
            <option value=""><-- กรุณาเลือก สถานะ --></option>
            <?php
			$strSQL = "SELECT * FROM product_status ORDER BY status_id ASC";
			$objQuery = mysql_query($strSQL);
			while($objResuut = mysql_fetch_array($objQuery))
			{
			?>
            <option value="<?php echo $objResuut["status_id"];?>"><?php echo $objResuut["status_id"]." - ".$objResuut["status_name"];?></option>
            <?php
			}
			?>
          </select></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">สี :</th>
          <td bgcolor="#CEFFDE"><input name="Product_Color" type="text" id="Product_Color" size="50" /></td>
        </tr>
        <tr>
          <th height="146" align="right" bgcolor="#66FF99" scope="row">size :</th>
          <td valign="top" bgcolor="#FF79FF"><fieldset>
            <legend>กรุณาเลือก Size</legend>
            <table width="559" border="0">
            <tr>
              <th width="119" align="left" valign="top" bgcolor="#FF99FF" scope="col"><input type="checkbox" name="chksize[]" value="32/70" />
                32/70
 &nbsp;&nbsp;&nbsp;<br />
                  <input type="checkbox" name="chksize[]" value="34/75" />
                34/75 &nbsp;&nbsp;&nbsp;<br />
                <input type="checkbox" name="chksize[]" value="36/80" />
                36/80 &nbsp;&nbsp; <br />
                <input type="checkbox" name="chksize[]" value="38/85" />
                38/85 
                &nbsp;&nbsp;&nbsp;<br />
                <input type="checkbox" name="chksize[]" value="40/90" />
                40/90 &nbsp;&nbsp;&nbsp; <br />
                <input type="checkbox" name="chksize[]" value="42/95" />
                42/95 &nbsp;&nbsp;</th>
              <th width="140" align="left" valign="top" bgcolor="#FFCCFF" scope="col">จำนวน
                <input name="chknum[]" type="text" id="chknum[]" size="5">
                <br>
                จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">                  <br>                </th>
              <th width="136" align="left" valign="top" bgcolor="#FF99FF" scope="col"><input type="checkbox" name="chksize[]" value="S" />
S
                   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
                   <input type="checkbox" name="chksize[]" value="M" />
M
					&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
                    <input type="checkbox" name="chksize[]" value="L" />
L 
                	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
                    <input type="checkbox" name="chksize[]" value="XL" />
XL
                 	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
                    <input type="checkbox" name="chksize[]" value="XXL" />
XXL             
                	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
                    <input type="checkbox" name="chksize[]" value="XXXXL" />
XXXXL             
                	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
                    <input type="checkbox" name="chksize[]" value="XXXXXL" />
XXXXXL
                	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
                    <input type="checkbox" name="chksize[]" value="FREESIZE" />
FREESIZE
                	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
              <th width="146" align="left" valign="top" bgcolor="#FFCCFF" scope="col">จำนวน
                  <input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">
                <br>
                จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">
                <br>
                จำนวน
                <input name="chknum[]" type="text" id="chknum[]" size="5">
                <br>
                
                จำนวน
<input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
  <input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
  <input name="chknum[]" type="text" id="chknum[]" size="5">
                  <br>
                  จำนวน
  <input name="chknum[]" type="text" id="chknum[]" size="5">                            </th>
              </tr>
  </table>
          </fieldset>
            </td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">จำนวนสินค้าทั้งหมด :</th>
          <td bgcolor="#CEFFDE"><input name="Product_Amount" type="text" id="Product_Amount" size="8" /></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">จำนวนสินค้า(ต่ำสุด) :</th>
          <td bgcolor="#CEFFDE"><input name="Product_Minamount" type="text" id="Product_Amount3" value="10" size="8" /></td>
        </tr>
        <tr>
          <th align="right" bgcolor="#66FF99" scope="row">&nbsp;</th>
          <td bgcolor="#CEFFDE"><input name="btnSubmit" type="submit" value="Submit" /></td>
        </tr>
      </table>
        <p>&nbsp;</p>
      </form>
    
</table>
</p></td>
  </tr>
</table>
</body>
</html>



Add_Product_ac.php
Code (PHP)
<?php
include("db_connect.php");
	if(trim($_POST["Product_Id"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล รหัสสินค้า!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}
	if (!is_numeric($_POST["Product_Id"]))      //ตรวจสอบว่าใช่ตัวเลขไหม
{
    ?><script>alert('รหัสสินค้า ต้องเป็นตัวเลขเท่านั้น!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	;
}
	
	if(trim($_POST["Product_Name"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล ชื่อสินค้า!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}
	
	if(trim($_POST["Product_Category_ID"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล ประเภทสินค้า!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}	
	
		
	
	if(trim($_POST["Product_Costprice"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล ราคาต้นทุน')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}	
	if (!is_numeric($_POST["Product_Costprice"]))      //ตรวจสอบว่าใช่ตัวเลขไหม
{
    ?><script>alert('ราคาต้นทุน ต้องเป็นตัวเลขเท่านั้น!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	;
}
	if(trim($_POST["Product_Saleprice"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล ราคาขาย')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}
	if (!is_numeric($_POST["Product_Saleprice"]))      //ตรวจสอบว่าใช่ตัวเลขไหม
{
    ?><script>alert('ราคาขาย ต้องเป็นตัวเลขเท่านั้น!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	;
}
	
	if(trim($_POST["Product_Description"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล รายละเอียดสินค้า')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}	
	if(trim($_POST["Product_Status"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล สถานะสินค้า')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}	
	if(trim($_POST["Product_Color"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล สี')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}	
	if(trim($_POST["Product_Amount"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล จำนวนสินค้า')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}	
	if (!is_numeric($_POST["Product_Amount"]))      //ตรวจสอบว่าใช่ตัวเลขไหม
{
    ?><script>alert('จำนวนสินค้า ต้องเป็นตัวเลขเท่านั้น!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	;
}
	if(trim($_POST["Product_Minamount"]) == "")
	{
		?><script>alert('กรุณากรอกข้อมูล จำนวนต่ำสุด')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	
	}
	if (!is_numeric($_POST["Product_Minamount"]))      //ตรวจสอบว่าใช่ตัวเลขไหม
{
    ?><script>alert('จำนวนต่ำสุด ต้องเป็นตัวเลขเท่านั้น!')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
		exit();	;
}

$strSQL = "SELECT * FROM product WHERE Product_Id = '".trim($_POST['Product_Id'])."' ";
	$objQuery = mysql_query($strSQL);
	$objResult = mysql_fetch_array($objQuery);
	if($objResult)
	{
			?><script>alert('ไม่สามารถใช้ รหัสสินค้า นี้ได้')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
	}
	elseif($_FILES["filUpload"]["tmp_name"]==""){ //เช็ค รูปภาพ ถ้าไม่ได้ใส่
		?><script>alert('กรุณา อัพโหลด รูปภาพ')</script>
	<script type="text/javascript">
	 window.history.back();
</script><?
}
	elseif(move_uploaded_file($_FILES["filUpload"]["tmp_name"],"myfile/product/".$_FILES["filUpload"]["name"]))
	{

		include("db_connect.php");
		date_default_timezone_set('Asia/Bangkok');
		$date= date('y-m-d H:i:s');
		$strSQL = "INSERT INTO product ";
		$strSQL .="(Product_Id,Product_Name,Product_Category_ID,Sub_ID,Product_Amount,Product_Minamount,Product_Costprice,Product_Saleprice,Product_Image,Product_Description,Product_Status,Product_Color,datetime) 
		VALUES ('".$_POST["Product_Id"]."','".$_POST["Product_Name"]."','".$_POST["Product_Category_ID"]."','".$_POST["Sub_ID"]."','".$_POST["Product_Amount"]."','".$_POST["Product_Minamount"]."','".$_POST["Product_Costprice"]."',
		'".$_POST["Product_Saleprice"]."','".$_FILES["filUpload"]["name"]."','".$_POST["Product_Description"]."','".$_POST["Product_Status"]."','".$_POST["Product_Color"]."','$date')";

	$objQuery = mysql_query($strSQL);
	echo "<script>alert('เพิ่ม รายการสินค้า เรียบร้อยเเล้ว')</script>";?>
	<script type="text/javascript">
	window.location="Admin_Management_Product_Item.php";
</script><?
	}
//--------------------------เพิ่มSIZEสินค้า-----------------------------//
for($i=0;$i<count($_POST["chksize"]);$i++)
{
	for($i=0;$i<count($_POST["chknum"]);$i++)
{
	if(trim($_POST["chksize"][$i]) != "")
	{	
	if(trim($_POST["chknum"][$i]) != "")
	{
		$strSQL = "INSERT INTO product_size ";
		$strSQL .="(Product_Id,Product_Size,size_num) 
		VALUES ('".$_POST["Product_Id"]."','".$_POST["chksize"][$i]."','".$_POST["chknum"][$i]."')";
		$objQuery = mysql_query($strSQL);
	}
	}
}
}

	mysql_close();
	
?>	
	




Tag : PHP, MySQL









ประวัติการแก้ไข
2015-09-06 21:22:02
2015-09-06 21:23:40
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2015-09-06 21:19:25 By : ifirstinw View : 1005 Reply : 2
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

แบบนี้คุณใช้ array แบบ [] ไม่ได้ครับ จะต้องสร้างตัวแปรตาม id/name ของแต่ล่ะ rows ครับ เช่น

Code
<input type="checkbox1" name="chksize1" value="M" />
<input name="chknum1" type="text" id="chknum1" size="5">


Code (PHP)
<?php
if($_POST["chksize1"] != "")
{
	//echo $_POST["chknum1"]
	// Insert or update
}
?>


จาก Code คุณจะอ่านได้ของ Size นั้น ๆ ครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-09-07 09:42:22 By : mr.win
 


 

No. 2

Guest


อันนี้ผมลองปรับเปลี่ยนใหม่
dx
Code (PHP)
<td width="92" height="28" align="left" bgcolor="#FF99FF" scope="col"><input name="chksize32" type="checkbox" id="chksize32" value="32/70" /> 32/70  </td>
<?php
			$strSQL2 = "SELECT * FROM product_color ORDER BY id ASC";
			$objQuery2 = mysql_query($strSQL2);
			while($objResuut2 = mysql_fetch_array($objQuery2))
			{?>
            <tr>
              <td align="left" scope="col"><input name="chkcolor32"  type="checkbox" id="chkcolor32" value="<?php echo $objResuut2["color"];?>">
			 <?php echo $objResuut2["color"];?>
              <td align="left" scope="col"> จำนวน <input name="chknum32" type="text" id="chknum32" size="4"></td></tr><P>
            <?php
			
			}
			?>


มันไม่ยอมเข้าฐานข้อมูลครับ

ผมอยากให้มันเข้าฐานข้อมูลแบบนี้ครับ
product_id Product_Size Product_Color size_num
a001 32/70 ดำ 2
a001 32/70 แดง 3
a001 32/70 ขาว 2


ไฟล์ add_product_ac.php(อันนี้ผมลองทดสอบ ไซต์ 32 ไซต์เดียวครับ)

Code (PHP)
//--------------------------เพิ่มSIZEสินค้า 32-----------------------------//
if($_POST["chksize32"] != "")
	{	
	for($i=0;$i<count($_POST["chkcolor32"]);$i++)
{
	for($i=0;$i<count($_POST["chknum32"]);$i++)
{
	if(trim($_POST["chkcolor32"][$i]) != "")
	{	
	if(trim($_POST["chknum32"][$i]) != "")
	{
		$strSQL2 = "INSERT INTO product_size ";
		$strSQL2 .="(Product_Id,Product_Size,Product_Color,size_num) 
		VALUES ('".$_POST["Product_Id"]."','".$_POST["chksize32"]."','".$_POST["chkcolor32"][$i]."','".$_POST["chknum32"][$i]."')";
		$objQuery2 = mysql_query($strSQL2);
	}
	}
}
}
}



	mysql_close();
	
?>	

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-09-09 17:21:37 By : ifirstinw
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : สอบถาม การเพิ่มสินค้า โดยการแบ่งตาม Sizeสินค้า เเละเเต่ละไซต์มี สีอะไรบ้าง เเละจำนวนกี่ตัว
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่