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

HOME > PHP > PHP Forum > สอบถามเรื่องการทำ เว็บบอร์ด ให้เรียงลำดับกระทุ้ จาก ผู้แสดงความคิดเห็นล่าสุด หน่อยครับ



 

สอบถามเรื่องการทำ เว็บบอร์ด ให้เรียงลำดับกระทุ้ จาก ผู้แสดงความคิดเห็นล่าสุด หน่อยครับ

 



Topic : 113963



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



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




คือผมกำลังศึกษา การทำเว็บบอร์ดจาก ลิ้งค์ PHP สร้าง WebBoard กระดานถาม-ตอบ เว็บบอร์ดสำหรับเว็บ PHP กับ MySQL

https://www.thaicreate.com/free-web-script/php-create-webboard-mysql.html

อยากทราบว่า php เราสามารถ ทำการเรียงลำดับหัวข้อ จาก ผุ้แสดงความคิดเห็นล่าสุดได้หรือไม่ครับ

เช่น ใครที่มาแสดงความคิดเห็น หัวข้อไหน เวลาล่าสุด ให้หัวข้ออยุ่ด้านบนสุด อะครับ

ผมใช้คำสั่ง sql

Code (SQL)
SELECT topic.t_id, topic.topic, topic.t_date, topic.t_username, topic.`view`, topic.reply, reply.r_username, reply.r_date
FROM topic, reply
ORDER BY reply.r_date desc


ข้อมูลที่ได้มา มันไม่ได้เรียงตามวันที่ ตอบล่าสุดอะครับ แบบนี้

1111

ไม่ทราบว่าผมผิดตรงไหนหรอครับ

อันนี้รูปจากตาราง topic ครับ

2222

223

อันนี้รูปจากตาราง reply ครับ

224

225

ผมกำลังหัดทำแบบเว็บบอร์ดทั่วไปที่ ผู้แสดงความคิดเห็นเวลาล่าสุด จะอยุ่หัวข้อด้านบนสุด

รบกวนหน่อยครับ มือใหม่กำลังสึกษา ครับ



Tag : PHP, MySQL









ประวัติการแก้ไข
2015-01-23 23:34:55
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2015-01-23 23:32:10 By : team000000 View : 802 Reply : 11
 

 

No. 1



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



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


Code (SQL)
SELECT 

topic.t_id, 
topic.topic, 
topic.t_date, 
topic.t_username, 
topic.`view`, 
topic.reply, 
reply.r_username, 
reply.r_date

FROM topic
LEFT JOIN reply ON reply.t_id = topic.t_id

ORDER BY reply.t_id DESC


ได้บ่






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-23 23:58:20 By : yamcrocodile
 


 

No. 2



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



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


ตอบความคิดเห็นที่ : 1 เขียนโดย : yamcrocodile เมื่อวันที่ 2015-01-23 23:58:20
รายละเอียดของการตอบ ::
ได้แล้วครับพี่ แต่ถ้ามีผู้แสดงความคิดเห็น กระทู้นั้นมากกว่า 1 คน มันจะมาแสดงซ้ำกันอะครับ แบบนี้
111111111111
22222222222
ผมลองใช้ distinct แล้วก็ยังเหมือนเดิมครับ
Code (SQL)
SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.t_username, topic.`view`, topic.reply, reply.r_username, reply.r_date
FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id
ORDER BY reply.t_id DESC





ประวัติการแก้ไข
2015-01-24 13:03:13
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 13:02:13 By : team000000
 

 

No. 3



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



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


ขอดู code ได้บ่ ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 15:20:06 By : yamcrocodile
 


 

No. 4

Guest


เพิ่มอีก 1 ฟิลที่ตาราง topic ใช้เก็บวันเวลาที่มีการแสดงความคิดเห็น เวลาทำการ insert ความคิดเห็นก็ให้อัพเดทเวลาที่ topic ด้วย แล้วก็ Order by ชื่อฟิวที่เก็บเวลา(ฟิลที่เพิ่มใหม่) DESC
น่าจะเป็นวิธีที่เข้าใจง่ายสุดล่ะ
แนะนำฟิวที่เพิ่มใหม่ให้ใช้ type เป็น datetime ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 17:09:12 By : pgm
 


 

No. 5



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



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


มันเป็นปัญหาอยู่ว่า ....

DISTINCT + ORDER BY -->ไม่เรียงครับ เช่นเดียวกับ

GROUP BY + ORDER BY -->อันนี้ก็ไม่เรียงให้ครับ


คงต้องปรับเป็นคิวรี่ 2 รอบครับ เพราะอะไรผมก็ไม่รู้ครับเหมือนจะง่ายแต่มันไม่เรียงให้ครับ เมื่อเจองานแบบนี้ ผมจะ

Code
SELECT * FROM ( SELECT * FROM บลาบลาบลา GROUP BY...... ) AS fgdfjkgjkdfjk ORDER BY .....


จขกทลองแบบนี้ดูครับเผื่อได้

SELECT *FROM (SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.t_username, topic.`view`, topic.reply, reply.r_username, reply.r_date
FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id ) AS inv  ORDER BY reply.t_id DESC



ประวัติการแก้ไข
2015-01-24 17:25:08
2015-01-24 17:27:35
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 17:21:56 By : meannerss
 


 

No. 6



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



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


ตอบความคิดเห็นที่ : 3 เขียนโดย : yamcrocodile เมื่อวันที่ 2015-01-24 15:20:06
รายละเอียดของการตอบ ::
อันนี้โค้ดครับ
Code (PHP)
<?php require_once('Connections/Project.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

mysql_select_db($database_Project, $Project);
$query_topic = "SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.username, topic.`view`, topic.reply, reply.r_username, reply.r_date FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id ORDER BY reply.t_id DESC";
$topic = mysql_query($query_topic, $Project) or die(mysql_error());
$row_topic = mysql_fetch_assoc($topic);
$totalRows_topic = mysql_num_rows($topic);
?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="0" class="table">
  <tr class="font_white">
    <td width="8%" align="center" bgcolor="#0000FF"><strong>รหัส</strong></td>
    <td width="52%" align="center" bgcolor="#0000FF"><strong>หัวข้อ</strong></td>
    <td width="12%" align="center" bgcolor="#0000FF"><strong>ตอบโดย</strong></td>
    <td width="10%" align="center" bgcolor="#0000FF"><strong>ตอบล่าสุด</strong></td>
    <td width="9%" align="center" bgcolor="#0000FF"><strong>อ่าน</strong></td>
    <td width="9%" align="center" bgcolor="#0000FF"><strong>ตอบ</strong></td>
  </tr>
  <?php do { ?>
  <tr>
    <td align="center"><?php echo $row_topic['t_id']; ?></td>
    <td><a href="#" class="blue"><?php echo $row_topic['topic']; ?></a><br />
      <span style="font-size:12px">โดย : <?php echo $row_topic['username']; ?> เมื่อ : <?php echo $row_topic['t_date']; ?></span></td>
    <td><?php 
					if($row_topic['r_username']!=""){
					echo $row_topic['r_username']; 
					}else{
						echo "ยังไม่มีผู้ตอบ";
						}
					?></td>
    <td align="center"><?php 
					if($row_topic['r_date']!=""){
					echo $row_topic['r_date'];
					}else{
						echo "-";
						}?></td>
    <td align="center"><?php echo $row_topic['view']; ?></td>
    <td align="center"><?php echo $row_topic['reply']; ?></td>
  </tr>
  <?php } while ($row_topic = mysql_fetch_assoc($topic)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($topic);
?>






ประวัติการแก้ไข
2015-01-24 19:35:22
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 17:33:40 By : team000000
 


 

No. 7



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



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


ตอบความคิดเห็นที่ : 4 เขียนโดย : pgm เมื่อวันที่ 2015-01-24 17:09:12
รายละเอียดของการตอบ ::
ขอบคุณที่แนะนำนะครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 17:34:16 By : team000000
 


 

No. 8



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



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


ตอบความคิดเห็นที่ : 5 เขียนโดย : meannerss เมื่อวันที่ 2015-01-24 17:21:56
รายละเอียดของการตอบ ::
ผมลองทำตามที่บอกดูแล้วนะครับ ไม่ได้อะครับ
Code (SQL)
SELECT *
FROM (SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.t_username, topic.`view`, topic.reply, reply.r_username, reply.r_date  FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id ) AS inv
ORDER BY reply.t_id DESC

มันขึ้น Unknown column 'reply.t_id' in 'order clause'
Code (PHP)
<?php require_once('Connections/Project.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

mysql_select_db($database_Project, $Project);
$query_topic = "SELECT * FROM (SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.t_username, topic.`view`, topic.reply, reply.r_username, reply.r_date  FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id ) AS inv ORDER BY reply.t_id DESC";
$topic = mysql_query($query_topic, $Project) or die(mysql_error());
$row_topic = mysql_fetch_assoc($topic);
$totalRows_topic = mysql_num_rows($topic);mysql_select_db($database_Project, $Project);
$query_topic = "SELECT * FROM (SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.t_username, topic.`view`, topic.reply, reply.r_username, reply.r_date  FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id ) AS inv ORDER BY reply.t_id DESC";
$topic = mysql_query($query_topic, $Project) or die(mysql_error());
$row_topic = mysql_fetch_assoc($topic);
$totalRows_topic = mysql_num_rows($topic);
$query_topic = "SELECT * FROM (SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.username, topic.`view`, topic.reply, reply.r_username, reply.r_date FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id ) AS inv  ORDER BY reply.t_id DESC";
$topic = mysql_query($query_topic, $Project) or die(mysql_error());
$row_topic = mysql_fetch_assoc($topic);
$totalRows_topic = mysql_num_rows($topic);
?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="0" class="table">
  <tr class="font_white">
    <td width="8%" align="center" bgcolor="#0000FF"><strong>รหัส</strong></td>
    <td width="52%" align="center" bgcolor="#0000FF"><strong>หัวข้อ</strong></td>
    <td width="12%" align="center" bgcolor="#0000FF"><strong>ตอบโดย</strong></td>
    <td width="10%" align="center" bgcolor="#0000FF"><strong>ตอบล่าสุด</strong></td>
    <td width="9%" align="center" bgcolor="#0000FF"><strong>อ่าน</strong></td>
    <td width="9%" align="center" bgcolor="#0000FF"><strong>ตอบ</strong></td>
  </tr>
  <?php do { ?>
  <tr>
    <td align="center"><?php echo $row_topic['t_id']; ?></td>
    <td><a href="#" class="blue"><?php echo $row_topic['topic']; ?></a><br />
      <span style="font-size:12px">โดย : <?php echo $row_topic['t_username']; ?> เมื่อ : <?php echo $row_topic['t_date']; ?></span></td>
    <td><?php 
					if($row_topic['r_username']!=""){
					echo $row_topic['r_username']; 
					}else{
						echo "ยังไม่มีผู้ตอบ";
						}
					?></td>
    <td align="center"><?php 
					if($row_topic['r_date']!=""){
					echo $row_topic['r_date'];
					}else{
						echo "-";
						}?></td>
    <td align="center"><?php echo $row_topic['view']; ?></td>
    <td align="center"><?php echo $row_topic['reply']; ?></td>
  </tr>
  <?php } while ($row_topic = mysql_fetch_assoc($topic)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($topic);
?>





ประวัติการแก้ไข
2015-01-24 19:52:05
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 17:34:42 By : team000000
 


 

No. 9



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



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


ลองเปลี่ยนจาก do while เป็น


Code (PHP)
while() 
{

}


do while = แสดงผลก่อนแล้วค่อยเช็ค

while = เช็กก่อนแล้ว แสดงผล
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 20:16:41 By : yamcrocodile
 


 

No. 10



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



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


ตอบความคิดเห็นที่ : 9 เขียนโดย : yamcrocodile เมื่อวันที่ 2015-01-24 20:16:41
รายละเอียดของการตอบ ::
ไม่ได้ครับ เรียงเป็นแบบนี้
1111
Code (PHP)
<?php require_once('Connections/Project.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}

mysql_select_db($database_Project, $Project);
$query_topic = "SELECT DISTINCT (topic.t_id), topic.topic, topic.t_date, topic.t_username, topic.`view`, topic.reply, reply.r_username, reply.r_date FROM topic LEFT JOIN reply ON reply.t_id = topic.t_id ORDER BY reply.t_id DESC ";
$topic = mysql_query($query_topic, $Project) or die(mysql_error());
$row_topic = mysql_fetch_assoc($topic);
$totalRows_topic = mysql_num_rows($topic);
?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="0" class="table">
  <tr class="font_white">
    <td width="8%" align="center" bgcolor="#0000FF"><strong>รหัส</strong></td>
    <td width="52%" align="center" bgcolor="#0000FF"><strong>หัวข้อ</strong></td>
    <td width="12%" align="center" bgcolor="#0000FF"><strong>ตอบโดย</strong></td>
    <td width="10%" align="center" bgcolor="#0000FF"><strong>ตอบล่าสุด</strong></td>
    <td width="9%" align="center" bgcolor="#0000FF"><strong>อ่าน</strong></td>
    <td width="9%" align="center" bgcolor="#0000FF"><strong>ตอบ</strong></td>
  </tr>
  <?php while ($row_topic = mysql_fetch_assoc($topic)){?>
  <tr>
    <td align="center"><?php echo $row_topic['t_id']; ?></td>
    <td><a href="#" class="blue"><?php echo $row_topic['topic']; ?></a><br />
      <span style="font-size:12px">โดย : <?php echo $row_topic['t_username']; ?> เมื่อ : <?php echo $row_topic['t_date']; ?></span></td>
    <td><?php 
					if($row_topic['r_username']!=""){
					echo $row_topic['r_username']; 
					}else{
						echo "ยังไม่มีผู้ตอบ";
						}
					?></td>
    <td align="center"><?php 
					if($row_topic['r_date']!=""){
					echo $row_topic['r_date'];
					}else{
						echo "-";
						}?></td>
    <td align="center"><?php echo $row_topic['view']; ?></td>
    <td align="center"><?php echo $row_topic['reply']; ?></td>
  </tr>
  <?php }  ?>
</table>
</body>
</html>
<?php
mysql_free_result($topic);
?>






ประวัติการแก้ไข
2015-01-24 20:39:04
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 20:35:13 By : team000000
 


 

No. 11



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



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


Line ID: yamq

ถ้ารีบก็ลายมาหาผมครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-01-24 20:39:39 By : yamcrocodile
 

   

ค้นหาข้อมูล


   
 

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