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,037

HOME > PHP > PHP Forum > ดึงภาพจากฐานข้อมูลมาโชว์ เพื่อจะ Edit แต่ภาพไม่โชว์ค่ะ รบกวนช่วยแก้ไขด้วยค่ะ



 

ดึงภาพจากฐานข้อมูลมาโชว์ เพื่อจะ Edit แต่ภาพไม่โชว์ค่ะ รบกวนช่วยแก้ไขด้วยค่ะ

 



Topic : 057460



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



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




คือว่าเขียน php ไม่เก่ง อาศัย copy code ของคนอื่นไปใช้แล้วแก้ไขเอาค่ะ ทำโปรเจ็คเกี่ยวกับสมาชิกค่ะ มีกระบวนการดังนี้ค่ะ
- add
- showmember
- editmember
- deletemember
- search member
ทำมาถึงขั้น edit member แล้วค่ะ แต่ว่ารูปที่อยู่ใน db เก็บชื่อรูปไว้ไม่ show ค่ะแล้วถ้าต้องการลบรูปก่อนแล้วจึงจะ add รูปใหม่เข้าไปได้ จะต้องทำอย่างไรค่ะ ?? รบกวนด้วยนะคะ อ่านมาหลายกระทู้ใน thaicreate แล้วค่ะ แต่ว่าก็ทำไม่ได้ค่ะ เลยลองเขียนถามดูค่ะ

code หน้า edit ค่ะ
Code (PHP)
<html>
<head>
<title>แก้ไขข้อมูลศิษย์เก่า</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<?php
$id = $_GET['id']; 

//session_start() ;
include("connect.inc.php") ;
//$db = "mymaindata_pedsi" ; 
$db = "alumni" ; 
mysql_select_db($db) ;

//$id=$_REQUEST['id'];
$sql = "SELECT * FROM alumni_pedsiriraj WHERE id = '$id'"; 

$db_query=mysql_query($sql);
$result = mysql_fetch_array($db_query);

$id=$result['id'];
$prename=$result['prename'];
$names=$result['names'];
$surname=$result['surname'];
$names_eng=$result['names_eng'];
$surname_eng=$result['surname_eng'];
$class_dent=$result['class_dent'];
$periodOfTime=$result['periodOfTime'];
$periodOfTimeF=$result['periodOfTimeF'];
$addressl=$result['addressl'];
$tel=$result['tel'];
$mobile=$result['mobile'];
$email1=$result['email1'];
$facebook=$result['facebook'];
$office=$result['office'];
$office_address=$result['office_address'];
$tel_office=$result['tel_office'];
$contact_us=$result['contact_us'];
$date_of_update=$result['date_of_update'];
$subject_fellow=$result['subject_fellow'];
$status_dent=$result['status_dent'];
$remark=$result['remark'];
$picture1=$result['picture1'];
?>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><div align="center">ศิษย์เก่า</div></td>
  </tr>
  <tr><td>&nbsp;</td></tr>
  <tr>
    <td>
	<form   name="saveedit" action="saveedit.php" method="post" enctype="multipart/form-data" id="add" onSubmit="return check()" >
    <table width="80%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="0066cc">
        <tr bgcolor="0066cc"> 
          <td colspan="2"><div align="center"><font color="#FFFFFF" size="2" face="MS Sans Serif, Tahoma, sans-serif"><strong> 
               แก้ไขข้อมูลสมาชิก</strong></font></div></td>
          </tr>

		   <tr bgcolor="#FFFFFF"> <td>
		   <input type="hidden" name="id" value="<?=$id;?>"  /> 
		   <td> </tr>
		   <tr bgcolor="#FFFFFF"> 
           <td height="33"> <div align="left"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp;คำนำหน้าชื่อ <font color="#FF0000"></font></font></div></td>
           <td>&nbsp;&nbsp; 
		   <input name="prename" type="text" id="prename" size="10" maxlength="10" value=<?php echo "\"$prename\"" ?>></td>
           </tr>
           <tr bgcolor="#FFFFFF"> 
           <td height="33"> <div align="left"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp;ชื่อ <font color="#FF0000">**</font></font></div></td>
           <td>&nbsp;&nbsp; 
		   <input name="names" type="text" id="names" size="50" maxlength="50" value=<?php echo "\"$names\"" ?>></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="33"> <div align="left"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp;นามสกุล <font color="#FF0000">**</font></font></div></td>
            <td>&nbsp;&nbsp;
			<input name="surname" type="text" id="surname" size="50" maxlength="100" value=<?php echo "\"$surname\"" ?>></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="33"> <div align="left"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp;Name <font color="#FF0000">**</font></font></div></td>
            <td>&nbsp;&nbsp; 
			<input name="names_eng" type="text" id="names_eng" size="50" maxlength="50" value=<?php echo "\"$names_eng\"" ?>></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="33"> <div align="left"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp;Surname <font color="#FF0000">**</font></font></div></td>
            <td>&nbsp;&nbsp; 
			<input name="surname_eng" type="text" id="surname_eng" size="50" maxlength="100" value=<?php echo "\"$surname_eng\"" ?>></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="33"> <div align="left"><font color="#000000" size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp;ว.ว.รุ่นที่ <font color="#FF0000"></font></font></div></td>
            <td>&nbsp;&nbsp; 
			<input name="class_dent" type="text" id="class_dent" size="50" maxlength="100" value=<?php echo "\"$class_dent\"" ?>></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="32"> <div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;ช่วงฝึกอบรม (Resident)</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="periodOfTime" type="text" id="periodOfTime" size="30" maxlength="20" value=<?php echo "\"$periodOfTime\"" ?>>
              </font></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="32"> <div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;ช่วงฝึกอบรม(สำหรับ Fellow)</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="periodOfTimeF" type="text" id="periodOfTimeF" size="30" maxlength="20" value=<?php echo "\"$periodOfTimeF\"" ?>>
              </font></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;ที่อยู่</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="addressl" type="text" id="addressl" size="50" maxlength="250" value=<?php echo "\"$addressl\"" ?>>
              </font></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;โทรศัพท์บ้าน</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="tel" type="text" id="tel" size="30" maxlength="10" value=<?php echo "\"$tel\"" ?>>
              </font></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="32"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;โทรศัพท์มือถือ</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="mobile" type="text" id="mobile" size="30" maxlength="30" value=<?php echo "\"$mobile\"" ?>>
              </font></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;E-mail</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="email1" type="text" id="email1" size="100" maxlength="100" value=<?php echo "\"$email1\"" ?>>
              </font></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="36"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;Facebook</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="facebook" type="text" id="facebook" size="100" maxlength="150" value=<?php echo "\"$facebook\"" ?>>
              </font></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="36"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;ที่ทำงาน</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="office" type="text" id="office" size="100" maxlength="100" value=<?php echo "\"$office\"" ?>>
              </font></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="32"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;ที่อยู่ที่ทำงาน</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="office_address" type="text" id="office_address" size="100" maxlength="250" value=<?php echo "\"$office_address\"" ?>>
              </font></td>
          </tr>
          <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;เบอร์โทรศัพท์ที่ทำงาน</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="tel_office" type="text" id="tel_office" size="50" maxlength="50" value=<?php echo "\"$tel_office\"" ?>>
              </font></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;สถานที่ติดต่อ</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="contact_us" type="text" id="contact_us" size="100" maxlength="250" value=<?php echo "\"$contact_us\"" ?>>
              </font></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;วันที่ปรับปรุงข้อมูล</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
            <input name="date_of_update" type="text" id="date_of_update" size="20" maxlength="20" value=<?php echo "\"$date_of_update\"" ?>>
              </font></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;สาขาวิชา(สำหรับ Fellow)</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
              <input name="subject_fellow" type="text" id="subject_fellow" size="20" maxlength="20" value=<?php echo "\"$subject_fellow\"" ?>>
              </font></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="30"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif">
			<font size="2">&nbsp;&nbsp;&nbsp;สถานะ</font></font></div></td>
              <td><div align="left"><span class="style5">
    			<input name="status_dent" type="radio" value="Resident" <?php echo ($result['status_dent']=="Resident")?'checked="checked"':'' ?>/>
				  Residnet 
				 
				 <input name="status_dent" type="radio" value="Fellow" <?php echo ($result['status_dent']=="Fellow")?'checked="checked"':'' ?> />
                   Fellow 
			  	  <input name="status_dent" type="radio" value="Both" <?php echo ($result['status_dent']=="Both")?'checked="checked"':'' ?> /> 
				   Both
				 </span></div></td>
            </tr>

		
          <tr bgcolor="#FFFFFF"> 
            <td height="36"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;รูปภาพ 
                ! </font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
             
			 <!--img src = "<?php echo stripslashes($result['picture1']); ?>" width="64"--> 
			 <!--input type="file"name="upload" value="<?php echo $result['picture1'];?>"-->
			 <img src = "<?php echo "$picture1";?>" width="64"> 
			 


			 <a href = <?php $delpic =  "DELETE $picture1 FROM alumni_pedsiriraj WHERE id = '$id'"; ?> >  ลบรูปภาพ</a>
			 <br>
			 <input type="file" name="fileupload">



              </font></td>
          </tr>
		  <tr bgcolor="#FFFFFF"> 
            <td height="31"><div align="left"><font color="#000000" face="MS Sans Serif, Tahoma, sans-serif"><font size="2">&nbsp;&nbsp;&nbsp;หมายเหตุ</font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;&nbsp;&nbsp; 
              <input name="remark" type="text" id="remark" size="50" maxlength="50" value=<?php echo "\"$remark\"" ?>>
              </font></td>
          </tr>

          <tr bgcolor="#FFFFFF"> 
            <td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif"><font size="2"><font color="#000000"></font></font></font></div></td>
            <td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">&nbsp;</font></td>
          </tr>
      <tr bgcolor="#0066CC"> 
      <td colspan="2"> 
        <div align="center"> 
          <input type="submit" name="Submit" value="ตกลง">
          &nbsp;
          <input type="reset" name="Submit2" value="ยกเลิก">
          <input name="ok" type="hidden" id="ok" value="ok_pass">
        </div></td>
    </tr>
          <tr bgcolor="#FFFFFF"> 
            <td><div align="center"><font face="MS Sans Serif, Tahoma, sans-serif"><font size="2"><font color="#000000"></font></font></font></div></td>
            <td><div align="center"><font size="2" face="MS Sans Serif, Tahoma, sans-serif"> 
                &nbsp;</font></div></td>
          </tr>
        </table>
		</form></td>
  </tr>
  
<script language="javascript">

function check() {
if(document.checkForm.names.value=="") {
alert("กรุณากรอกชื่อด้วยครับ") ;
document.checkForm.names.focus() ;
return false ;
}
else if(document.checkForm.surname.value=="") {
alert("กรุณากรอกนามสกุลด้วยครับ") ;
document.checkForm.suraname.focus() ;
return false ;
}
else if(document.checkForm.class_dent.value=="") {
alert("กรุณากรอกรุ่น ให้ครบถ้วนด้วยนะครับ") ;
document.checkForm.class_dent.focus() ;
return false ;
}
else if(isNaN(document.checkForm.emaill.value)) {
alert("กรุณากรอ email ให้ครบถ้วนด้วยนะครับ") ;
document.checkForm.emaill.focus() ;
return false ;
}
else if(document.checkForm.tel.value=="") {
alert("กรุณากรอกเบอร์โทรศัพท์ด้วยครับ") ;
document.checkForm.tel.focus() ;
return false ;
}else if(isNaN(document.checkForm.mobile.value)) {
alert("กรุณากรอกเบอร์โทรศัพท์มือถือด้วยนะครับ") ;
document.checkForm.mobile.focus() ;
return false ;
}
else if(isNaN(document.checkForm.office.value)) {
alert("กรุณากรอกที่ทำงาน ให้ครบถ้วนด้วยนะครับ") ;
document.checkForm.office.focus() ;
return false ;
}
  }
 
</script>
 </table>
</body>
</html>





Tag : PHP, MySQL







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-03-18 16:04:08 By : onenueng View : 1201 Reply : 4
 

 

No. 1



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



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


..








ประวัติการแก้ไข
2011-03-18 16:50:17
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-18 16:06:16 By : .
 


 

No. 2



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

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

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

Go to : พี่ค่ะ ขอโค้ด แก้ไขรูปภาพ แล้วบันทึกลงฐานข้อมูลหน่อยค่ะ

Go to : แก้ไขรูปภาพยังไงคะ ในกรณีที่แก้ไขฟอร์มอ่ะค่ะ แล้วมีช่องสำหรับใส่ภาพลงไปเพื่อแก้ไข

Go to : ขอโค๊ดแก้ไขรูปภาพของ PHP ด้วยค่ะ ไม่รู้ว่าผิดตรงไหนค่ะ ช่วยแก้ไขให้ด้วยนะค่ะ รูปภาพไม่เปลี่ยนให้ซักที
Go to : การแก้ไขรูป หลังจากที่ผมถามเรื่องการเก็บรูปภาพ ตอนนี้กลับมาติดตรงเรื่องการแก้ไขมันอ่ะครับ

Go to : มีปัญหาเกี่ยวกับโค๊ดการ แก้ไขภาพสินค้า คับ ช่วยดูให้ทีคับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-18 16:36:13 By : webmaster
 

 

No. 3



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



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


ขอบคุณค่ะ...ดูมาหมดแล้วค่ะที่ ส่งมาให้
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-18 16:51:00 By : .
 


 

No. 4



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

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

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

Go to : PHP สร้างฟอร์มสำหรับ Upload รูปภาพลงในฐานข้อมูล MySQL พร้อมกับแบบ Form สำหรับการแก้ไขรูปภาพ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-04-16 19:46:05 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ดึงภาพจากฐานข้อมูลมาโชว์ เพื่อจะ Edit แต่ภาพไม่โชว์ค่ะ รบกวนช่วยแก้ไขด้วยค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 04
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 อัตราราคา คลิกที่นี่