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

HOME > PHP > PHP Forum > ช่วยทีครับ ผมทำList ข้อมูลแบบPaging(แบ่งหน้า) มันโชว์แค่หน้าแรกอะครับ พอกดหน้า2มันErrorอะครับ



 

[PHP] ช่วยทีครับ ผมทำList ข้อมูลแบบPaging(แบ่งหน้า) มันโชว์แค่หน้าแรกอะครับ พอกดหน้า2มันErrorอะครับ

 



Topic : 065228



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



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




createinvoice.php // inputค่าจาก select box ครับ

Code (PHP)
01.<?
02.include "databaseconnect2.php";
03. 
04.echo "<div align = 'right'><a href ='logout.php'>Logout <a></div>";
05.echo"<br><br>";
06.echo "<div align='center'>Dotarai Create Invocie</div>";
07.echo"<form action='createinvoice2.php' method='post' >";
08.echo"<table align='center'>";
09.echo"<tr><td>BP Name: </td>";
10.echo "<td><select name = 'bp'>";
11.echo"<option value=''>BP Name </option>";
12. 
13. 
14.$sql= "select webreg__user.username,webreg__user.fname,webreg__user.lname,webreg__user.org from
15.       bpuser,webreg__user where bpuser.webreg__userId= webreg__user.id
16.      order by webreg__user.org";
17.$result= mysql_query($sql) or die (mysql_error());
18.while($rows = mysql_fetch_array($result))
19.{
20.    
21.   echo"<option value=".$rows['username'].">".$rows['org']."(".$rows['fname']." "
22.   .$rows['lname'].")</option>";
23.   
24.}
25.echo "</select></td></tr>";
26. 
27.echo"<br>";
28.echo"<tr><td>Date/Month/Year: </td>";
29. 
30.echo"<td><select name = 'date'>";
31.echo"<option value=''>All</option>";
32.for($i=1;$i<=31;$i++)
33.{
34.   if($i<10)
35.   {
36.    $j= '0'.$i;
37. echo"<option value='$j'>$j</option>";
38.   }
39.   else
40.   {
41.      echo"<option value='$i'>$i</option>";
42.   }
43.}
44.echo"</select>";
45. 
46. 
47. 
48. 
49. 
50.echo "<select name = 'month'>";
51.echo"<option value=''>Month</option>";
52.echo"<option value='01'>January</option>";
53.echo"<option value='02'>February</option>";
54.echo"<option value='03'>March</option>";
55.echo"<option value='04'>April</option>";
56.echo"<option value='05'>May</option>";
57.echo"<option value='06'>June</option>";
58.echo"<option value='07'>July</option>";
59.echo"<option value='08'>August</option>";
60.echo"<option value='09'>September</option>";
61.echo"<option value='10'>October</option>";
62.echo"<option value='11'>November</option>";
63.echo"<option value='12'>December</option>";
64.echo"</select>";
65. 
66. 
67. 
68.echo "<select name = 'year'>";
69.echo"<option value=''>Year </option>";
70.for($i=2007;$i<=date('Y');$i++)
71.{
72.echo"<option value='$i'>$i</option>";
73.}
74.echo"</td></tr></select>";
75.echo"<br>";
76.echo"<tr><td>Record Per Page: </td>";
77.echo "<td><select name = 'record'>";
78.echo"<option value=''>Record</option>";
79.for($i=1;$i<=10;$i++)
80.{
81.echo"<option value='$i'>$i</option>";
82.}
83.echo"</td></tr></select>";
84.echo"<br>";
85. 
86.echo"<tr><td colspan='2'><div align='center'><input type='submit' value='Submit'></div>";
87.echo"</td></tr></table>";
88.echo "</form>";
89. 
90.mysql_close($conn2);
91.?>




createinvoice2.php // รับค่ามาโชว์ โดยแบ่งหน้าด้วย


Code (PHP)
001.<?
002.include "databaseconnect2.php";
003.// Varible Detail
004.$bp = $_POST["bp"]; 
005.$month = $_POST["month"];
006.$year = $_POST["year"];
007.$record = $_POST["record"];
008.$date = $_POST["date"];
009.$ym = $year."-".$month ;
010.$ymd = $year."-".$month."-".$date;
011. 
012. 
013.// Header Document
014. 
015.echo "<table align='center'>";
016.echo "<tr><th>DotArai Co.,Ltd.</th></tr>";
017.echo "<tr><td>131 Mu 9, Room INC1-216 Phahon Yothin Rd.,</td></tr>";
018.echo "<tr><td> Khlong Nueng, Khlong Luang, Pathum Thani 12120 </td></tr>";
019.echo "<tr><td>Tel : 0-2564-8038  Fax : 0-2564-8039 </td></tr>";
020.echo "<tr><td colspan='2'>Emai : support@dotarai.co.th</td><td>เลขประจำตัวผู้เสียภาษี  :</td><td>3032001731</td></tr>";
021.echo "<tr><td>Invoice</td></tr>";
022.echo"</table>";
023. 
024. 
025.$sql= "select org,street1,city,sp,pc,voice,fax from webreg__user where username='$bp'";
026.$result= mysql_query($sql);
027.echo "<table align='center'>";
028.while($rows = mysql_fetch_array($result))
029.{
030.$da = date("d-M-Y");
031.$da2 = date("d")+7;
032.$da3 = date("M-Y");
033.echo "<tr><td col span='2'>Attn :</td><td>".$rows['org']." </td><td>Date :</td><td>".$da."</td></tr>";
034.echo "<tr><td></td><td> ".$rows['street1']." </td><td>Due Date :</td><td>".$da2."-".$da3."</td></tr>";
035.echo "<tr><td></td><td> ".$rows['city']." ".$rows['sp']." ".$rows['pc']."</td>
036. <td>Invoice No. :</td><td></td></tr>";
037.  
038. if($rows['voice']!="")
039. echo "<tr><td>Tel :</td><td>0".substr($rows['voice'],3)." </td><td></td><td></td></tr>";
040.  
041. else if($rows['voice']=="")
042. echo "<tr><td>Tel :</td><td> </td><td></td><td></td></tr>";
043.  
044. if($rows['fax']!="")
045. echo "<tr><td>Fax :</td><td>0".substr($rows['fax'],3)." </td><td></td><td></td></tr>";
046.  
047. else if($rows['fax']=="")
048. echo "<tr><td>Fax :</td><td> </td><td></td><td></td></tr>";
049.  
050.}
051.echo"</table>";
052.echo"<table align = 'center'>";
053.echo "<th>Item</th><th>Description</th><th>Qty</th><th>Unit Price</th><th>Baht Amount</th>";
054. 
055. 
056. 
057. 
058.if($_POST["date"]=='')
059.{
060.    $x = $ym;
061.}
062.else if($_POST["date"]!='')
063.{
064.    $x = $ymd;
065.}
066. 
067. 
068.// Paging Detail
069.$sql= " select webreg__pending_order.domainname,webreg__pending_order.period,webreg__tax_invoice_item.description
070.       ,webreg__tax_invoice_item.unit_amount
071.       from webreg__pending_order,webreg__tax_invoice_item
072.       where  webreg__pending_order.invoice_item_id = webreg__tax_invoice_item.id
073.       and webreg__pending_order.username='$bp' and webreg__pending_order.process_date like'$x%'
074.       and webreg__pending_order.status='Approve'
075.        
076.       UNION ALL
077.        
078.       select webreg__pending_renew.domainname,webreg__pending_renew.period,webreg__tax_invoice_item.description
079.       ,webreg__tax_invoice_item.unit_amount
080.       from webreg__pending_renew,webreg__tax_invoice_item
081.       where webreg__pending_renew.invoice_item_id = webreg__tax_invoice_item.id
082.       and webreg__pending_renew.username='$bp' and webreg__pending_renew.process_date like'$x%'
083.       and webreg__pending_renew.status='Approve'
084.        
085.       UNION ALL
086.        
087.       select webreg__pending_transfer_in.domainname,webreg__pending_transfer_in.period,
088.       webreg__tax_invoice_item.description,webreg__tax_invoice_item.unit_amount
089.       from webreg__pending_transfer_in,webreg__tax_invoice_item
090.       where webreg__pending_transfer_in.invoice_item_id = webreg__tax_invoice_item.id
091.       and webreg__pending_transfer_in.username='$bp' and webreg__pending_transfer_in.process_date like'$x%'
092.       and webreg__pending_transfer_in.status='Approve'";
093.       
094.      $result= mysql_query($sql);
095.      $Num_Rows = mysql_num_rows($result);
096.      $Per_Page = $record;   // Record Per Page
097.      $Page = $_GET["Page"];
098.if(!$_GET["Page"])
099.{
100.     $Page=1;
101.}
102.  $Prev_Page = $Page-1;
103.  $Next_Page = $Page+1;
104.  $Page_Start = (($Per_Page*$Page)-$Per_Page);
105.  if($Num_Rows<=$Per_Page)
106.{
107.     $Num_Pages =1;
108.}
109.else  if(($Num_Rows % $Per_Page)==0)
110.{
111.     $Num_Pages =($Num_Rows/$Per_Page) ;
112.}
113. else
114.{
115.     $Num_Pages =($Num_Rows/$Per_Page)+1;
116.     $Num_Pages = (int)$Num_Pages;
117.}
118.   
119. 
120.       
121.// Invoice Detail
122.$sql= " (select webreg__pending_order.domainname,webreg__pending_order.period,webreg__tax_invoice_item.description
123.       ,webreg__tax_invoice_item.unit_amount
124.       from webreg__pending_order,webreg__tax_invoice_item
125.       where  webreg__pending_order.invoice_item_id = webreg__tax_invoice_item.id
126.       and webreg__pending_order.username='$bp' and webreg__pending_order.process_date like'$x%'
127.       and webreg__pending_order.status='Approve' order by webreg__pending_order.process_date )
128.        
129.       UNION ALL
130.        
131.       ( select webreg__pending_renew.domainname,webreg__pending_renew.period,webreg__tax_invoice_item.description
132.       ,webreg__tax_invoice_item.unit_amount
133.       from webreg__pending_renew,webreg__tax_invoice_item
134.       where webreg__pending_renew.invoice_item_id = webreg__tax_invoice_item.id
135.       and webreg__pending_renew.username='$bp' and webreg__pending_renew.process_date like'$x%'
136.       and webreg__pending_renew.status='Approve' order by webreg__pending_renew.process_date  )
137.        
138.       UNION ALL
139.        
140.      ( select webreg__pending_transfer_in.domainname,webreg__pending_transfer_in.period,
141.       webreg__tax_invoice_item.description,webreg__tax_invoice_item.unit_amount
142.       from webreg__pending_transfer_in,webreg__tax_invoice_item
143.       where webreg__pending_transfer_in.invoice_item_id = webreg__tax_invoice_item.id
144.       and webreg__pending_transfer_in.username='$bp' and webreg__pending_transfer_in.process_date like'$x%'
145.       and webreg__pending_transfer_in.status='Approve' order by webreg__pending_transfer_in.process_date)
146.        LIMIT $Page_Start,$Per_Page";
147. 
148.$result= mysql_query($sql);
149. 
150.while($rows=mysql_fetch_array($result))
151.{
152.  
153.  echo"<tr><td> </td><td>" .$rows['domainname']." (".$rows['description'].")</td>
154.  <td>".$rows['period']."</td><td>".$rows['unit_amount']/$rows['period']." </td><td>".$rows['unit_amount']."
155.  </td></tr>";
156.}
157.echo"</table>";
158. 
159.echo"<br>";
160.//Paging Detail
161.echo "Total  ".$Num_Rows."Record :".$Num_Pages." Page : ";
162. 
163.if($Prev_Page)
164.{
165.     echo  " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< 
166.     Back</a> ";
167.}
168.   
169.for($i=1; $i<=$Num_Pages; $i++)
170.{
171.     if($i  != $Page)
172.     {
173.          echo  "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
174.     }
175.     else
176.     {
177.          echo  "<b> $i </b>";
178.     }
179.}
180.if($Page!=$Num_Pages)
181.{
182.     echo  " <a href ='$_SERVER[SCRIPT_NAME]?
183.     Page=$Next_Page'>Next>></a> ";
184.}
185.mysql_close($conn2);
186.?>



create

inputค่า


cre2


listมาโชว์ นี้คือหน้าแรก

er

พอกดคลิกไปหน้าที่2 ข้อมูลมันจะไม่แสดง
และพอกดคลิกไปที่หน้า1 อีกครั้ง ก้อจะเป็น Errorแบบภาพ



ไม่ทราบว่าเกิดจากสาเหตุใดครับ และจะมีวิธีแก้อย่างไร
ขอบคุณครับ



Tag : PHP, MySQL







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-08-23 13:22:44 By : sambrazil View : 745 Reply : 4
 

 

No. 1



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



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


คุณวางตำแหน่งตัวแปรผิดครับ ลองไล่โค๊ดจากตัวอยากดูดีๆครับ
Code (PHP)
01.$Num_Rows = mysql_num_rows($result);
02.$Per_Page = $record; // Record Per Page
03.$Page = $_GET["Page"];
04.if(!$_GET["Page"])
05.{
06.$Page=1;
07.}
08.$Prev_Page = $Page-1;
09.$Next_Page = $Page+1;
10.$Page_Start = (($Per_Page*$Page)-$Per_Page);







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-08-23 13:27:30 By : arm8957
 


 

No. 2



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



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


ลองแล้วนะเหมือนเดิมครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-08-23 14:57:05 By : sambrazil
 

 

No. 3



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



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


ยังแก้ไม่ได้ครับช่วยที
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-08-25 17:44:25 By : sambrazil
 


 

No. 4



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



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


ลองดูครับว่าได้รึป่าว
Code (PHP)
001.<?
002.include "databaseconnect2.php";
003.// Varible Detail
004.$bp = $_POST["bp"];
005.$month = $_POST["month"];
006.$year = $_POST["year"];
007.$record = $_POST["record"];
008.$date = $_POST["date"];
009.$ym = $year."-".$month ;
010.$ymd = $year."-".$month."-".$date;
011. 
012. 
013.// Header Document
014.?>
015.<table align='center'>
016.<tr><th>DotArai Co.,Ltd.</th></tr>
017.<tr><td>131 Mu 9, Room INC1-216 Phahon Yothin Rd.,</td></tr>
018.<tr><td> Khlong Nueng, Khlong Luang, Pathum Thani 12120 </td></tr>
019.<tr><td>Tel : 0-2564-8038 Fax : 0-2564-8039 </td></tr>
020.<tr><td colspan='2'>Emai : support@dotarai.co.th</td><td>เลขประจำตัวผู้เสียภาษี :</td><td>3032001731</td></tr>
021.<tr><td>Invoice</td></tr>
022.</table>
023. 
024.<?PHP
025.$sql= "select org,street1,city,sp,pc,voice,fax from webreg__user where username='$bp'";
026.$result= mysql_query($sql);
027.?>
028.<table align='center'>
029.<?PHP
030.while($rows = mysql_fetch_array($result)) {
031.$da = date("d-M-Y");
032.$da2 = date("d")+7;
033.$da3 = date("M-Y");
034.?>
035.<tr><td col span='2'>Attn :</td><td> <? echo $rows['org']; ?> </td><td>Date :</td><td><? echo $da; ?></td></tr>
036.<tr><td></td><td><? echo$rows['street1'];?> </td><td>Due Date :</td><td><? echo $da2;?>-<? echo $da3; ?></td></tr>
037.<tr><td></td><td>  <? echo $rows['city']; echo $rows['sp']; echo $rows['pc']; ?></td>
038.<td>Invoice No. :</td><td></td></tr>";
039.<?PHP if($rows['voice']!="") { ?>
040.<tr><td>Tel :</td><td>0<? echo substr($rows['voice'],3); ?></td><td></td><td></td></tr>
041.<?PHP } else if($rows['voice']=="") { ?>
042.<tr><td>Tel :</td><td> </td><td></td><td></td></tr>
043.<?PHP
044.}
045.if($rows['fax']!="") {
046.?>
047.<tr><td>Fax :</td><td>0<? echo substr($rows['fax'],3); ?> </td><td></td><td></td></tr>
048.<?PHP } else if($rows['fax']=="") { ?>
049.<tr><td>Fax :</td><td> </td><td></td><td></td></tr>
050.<?PHP } } ?>
051.</table>
052.<table align = 'center'>
053.<th>Item</th><th>Description</th><th>Qty</th><th>Unit Price</th><th>Baht Amount</th>
054. 
055. 
056. 
057.<?PHP
058.if($_POST["date"]=='')
059.{
060.$x = $ym;
061.}
062.else if($_POST["date"]!='')
063.{
064.$x = $ymd;
065.}
066. 
067. 
068.// Paging Detail
069.$sql= " select webreg__pending_order.domainname,webreg__pending_order.period,webreg__tax_invoice_item.description
070.,webreg__tax_invoice_item.unit_amount
071.from webreg__pending_order,webreg__tax_invoice_item
072.where webreg__pending_order.invoice_item_id = webreg__tax_invoice_item.id
073.and webreg__pending_order.username='$bp' and webreg__pending_order.process_date like'$x%'
074.and webreg__pending_order.status='Approve'
075. 
076.UNION ALL
077. 
078.select webreg__pending_renew.domainname,webreg__pending_renew.period,webreg__tax_invoice_item.description
079.,webreg__tax_invoice_item.unit_amount
080.from webreg__pending_renew,webreg__tax_invoice_item
081.where webreg__pending_renew.invoice_item_id = webreg__tax_invoice_item.id
082.and webreg__pending_renew.username='$bp' and webreg__pending_renew.process_date like'$x%'
083.and webreg__pending_renew.status='Approve'
084. 
085.UNION ALL
086. 
087.select webreg__pending_transfer_in.domainname,webreg__pending_transfer_in.period,
088.webreg__tax_invoice_item.description,webreg__tax_invoice_item.unit_amount
089.from webreg__pending_transfer_in,webreg__tax_invoice_item
090.where webreg__pending_transfer_in.invoice_item_id = webreg__tax_invoice_item.id
091.and webreg__pending_transfer_in.username='$bp' and webreg__pending_transfer_in.process_date like'$x%'
092.and webreg__pending_transfer_in.status='Approve'";
093. 
094.$result= mysql_query($sql);
095.$Num_Rows = mysql_num_rows($result);
096.$Per_Page = 1; // Record Per Page
097.$Page = $_GET["Page"];
098.if(!$_GET["Page"]) {
099.    $Page=1;
100.}
101. 
102.$Prev_Page = $Page-1;
103.$Next_Page = $Page+1;
104.$Page_Start = (($Per_Page*$Page)-$Per_Page);
105.if($Num_Rows<=$Per_Page)
106.{
107.$Num_Pages =1;
108.}
109.else if(($Num_Rows % $Per_Page)==0)
110.{
111.$Num_Pages =($Num_Rows/$Per_Page) ;
112.}
113.else
114.{
115.$Num_Pages =($Num_Rows/$Per_Page)+1;
116.$Num_Pages = (int)$Num_Pages;
117.}
118. 
119. 
120. 
121.// Invoice Detail
122.$sq.="LIMIT $Page_Start,$Per_Page";
123.$result= mysql_query($sql);
124. 
125.while($rows=mysql_fetch_array($result))
126.{
127.?>
128.<tr><td> </td><td><? echo $rows['domainname']; ?> (<? echo $rows['description']; ?>)</td>
129.<td><? echo $rows['period']; ?></td><td><? echo $rows['unit_amount']/$rows['period']; ?> </td><td><? echo $rows['unit_amount']; ?>
130.</td></tr>
131.<? } ?>
132.</table>
133. 
134.<br>
135. 
136. 
137.Total : <? echo $Num_Rows; ?> Record :<? echo $Num_Pages; ?> Page :
138. 
139.<ul style="list-style:none;"><span style="color:#CCC;">มีทั้งหมด <?= $Num_Rows;?> รายการ  หน้า : </span>
140.            <?PHP    if($Prev_Page){ ?>
141.                    <li style=" display:inline;"><a href='<?="$_SERVER[SCRIPT_NAME]?Page=1";?>'>หน้าแรก</a></li>
142.                    <li style=" display:inline;"><a href='<?="$_SERVER[SCRIPT_NAME]?Page=$Prev_Page";?>'>&laquo; กลับ</a></li>
143.            <?PHP
144.                } #ปิดเงื่อนไข if($Prev_Page)
145.                for($i=1; $i<=$Num_Pages; $i++){
146.                    if($i != $Page){
147.            ?>
148.                        <li style=" display:inline;"><a href='<?="$_SERVER[SCRIPT_NAME]?Page=$i";?>'><?=$i; ?></a></li>
149.            <?PHP
150.                    } else {
151.                        echo "<b>$i </b>";
152.                    } #ปิดเงื่อนไข if...else
153.                } #ปิดเงื่อนไข for
154.     
155.                if($Page!=$Num_Pages){
156.                ?>
157.                    <li style=" display:inline;"><a href ='<?="$_SERVER[SCRIPT_NAME]?Page=$Next_Page";?>'>ถัดไป &raquo;</a></li>
158.                    <li style=" display:inline;"><a href ='<?="$_SERVER[SCRIPT_NAME]?Page=$Num_Pages";?>'>หน้าสุดท้าย</a></li>
159.                <?PHP } ?>
160.                </ul>
161.<?PHP
162.mysql_close($conn2);
163.?>



ประวัติการแก้ไข
2011-08-25 18:42:37
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-08-25 18:30:28 By : arm8957
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยทีครับ ผมทำList ข้อมูลแบบPaging(แบ่งหน้า) มันโชว์แค่หน้าแรกอะครับ พอกดหน้า2มันErrorอะครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่