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 > ช่วยดูโค้ดทีค่ะ ต้องการแบ่งหน้าเว็บ แต่มันติดตรงที่ว่าถ้ามีโค้ดค้นหาด้วย มันนับจำนวนทั้งหมดในฐานข้อมูล



 

ช่วยดูโค้ดทีค่ะ ต้องการแบ่งหน้าเว็บ แต่มันติดตรงที่ว่าถ้ามีโค้ดค้นหาด้วย มันนับจำนวนทั้งหมดในฐานข้อมูล

 



Topic : 076547



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



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




ช่วยดูโค้ดทีค่ะ ต้องการแบ่งหน้าเว็บ แต่มันติดตรงที่ว่าถ้ามีโค้ดค้นหาด้วย มันจะนับจำนวนทั้งหมดในฐานข้อมูล

ปกติถ้าไม่มีโค้ดค้นหาด้วย ก็จะแบ่งหน้าได้ตามปกติ
ลิงค์ประมาณนี้ http://localhost/testphp/test.php?Page=2

แต่พอมีในเรื่องของการค้นหามาเพิ่ม
ลิงค์ประมาณนี้ http://localhost/testphp/test.php?status_id=1
หรือ http://localhost/testphp/test.php?status_id=2 บ้างอ่ะค่ะ

ถ้าจะให้ค้นหาเว็บ..แล้วแบ่งหน้าเว็บด้วย...แล้วก็ให้แบ่งหน้าตามจำนวนข้อมูลที่เราทำการค้นหาอยู่ทำยังไงคะ

Code (PHP)
<?php 
require("../inc/connect.php"); 




?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" >

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="../css/b_style.css"></head>
<link rel="stylesheet" type="text/css" href="../css/page.css">
<script type="text/javascript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<body>
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
  <td colspan="2" valign="top" bgcolor="#1A58A3"><p align="left">
    <a name="top" id="top"></a></td>
  </tr>
  <tr>
    <td colspan="2" valign="top" bgcolor="#1F5FA9">&nbsp;</td>
  </tr>
  <tr>
    <td height="23" colspan="2" valign="middle" background="../images/button/six_2.gif" bgcolor="#17191A"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="3%">&nbsp;</td>
        <td width="97%" class="text_link"><a href="index.php">หน้าแรก</a> &gt; จัดการผู้ดูแล</td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td valign="top" bgcolor="#F0F0F0"><table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td align="center" valign="top"><br />
                <table width="98%" border="0" cellpadding="1" cellspacing="1">
                  <tr>
                    <td width="50%">สถานะผู้ดูแล<span class="style24">
                      <select name="menu1" class="txtbox" onchange="MM_jumpMenu('parent',this,0)">
                    <option value="<?=$_SERVER['PHP_SELF'];?>">ทั้งหมด</option>
                    <?
$sql_group = "select * from status";
$dbquery_group = mysql_query($sql_group);
$num_rows_group = mysql_num_rows($dbquery_group);
while ($result_group = mysql_fetch_array($dbquery_group))
{
if($_GET["status_id"] == $result_group["status_id"])
{
$sel="selected";
}
else
{
$sel="";
}
?>
                    <option value="<?=$_SERVER['PHP_SELF'];?>?status_id=<?=$result_group["status_id"];?>" <?=$sel;?>>
                    <?=$result_group["status_name"];?>
                    </option>
                    <?
}
?>
                  </select>
                  </td>
                    <td width="50%" align="right" class="add_link"><div align="right"><a href="bf_admin_add.php"><img src="../images/Add-icon.png" alt="" width="32" height="32" border="0" />เพิ่ม Admin</a></div></td>
                  </tr>
                </table>
                <table width="98%" border="0" cellpadding="1" cellspacing="1" bordercolor="#1F5FA9" class="stb">
                  <tr>
                    <td width="5%" align="center" valign="top" bgcolor="#C4DBF4"><div align="center">ลำดับ</div></td>
                    <td width="13%" align="center" valign="top" bgcolor="#C4DBF4"><div align="center">Username</div></td>
                    <td width="27%" align="center" valign="top" bgcolor="#C4DBF4">ชื่อ-นามสกุล</td>
                    <td width="28%" align="center" valign="top" bgcolor="#C4DBF4"><div align="center">Email</div></td>
                    </tr>
<?
  
  $condition="";
	  		if($_GET["status_id"] <> "")
			{
			$condition="and status_id='$_GET[status_id]' ";
			}
			
$strSQL = "SELECT * FROM admin ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$stages = 3; // ...
$Per_Page = 10;   // Per Page
	

$Page = $_GET["Page"];
if(!$_GET["Page"])
{
	$Page=1;
}

$Prev_Page = $Page-1;
$Next_Page = $Page+1;

$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
	$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
	$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
	$Num_Pages =($Num_Rows/$Per_Page)+1;
	$Num_Pages = (int)$Num_Pages;
}
$LastPagem1 = $Num_Pages-1;
$strSQL .=" Where 1 $condition order by admin_id ASC LIMIT $Page_Start , $Per_Page";
$objQuery  = mysql_query($strSQL);
?>
<?
$no = 0;
if($Page > 1)
{
		$no = ($Per_Page*$Page)-$Per_Page;
}
while($result = mysql_fetch_array($objQuery))
{
	$no++;
?>
                  <tr>
                    <td align="center" valign="top"><?=$no;?></td>
                    <td align="left" valign="top"><?=$result["admin_uname"];?></td>
                    <td align="left" valign="top"><?=$result["admin_name"];?>
                      &nbsp;
                      <?=$result["admin_lname"];?></td>
                    <td align="left" valign="top"><?=$result["admin_email"];?></td>
                    <script type="text/javascript">

function Conf<?=$result["admin_id"]; ?>(object) {
if (confirm("ยืนยันการลบ [  <?=$result["admin_uname"]; ?> ] ") ==true) {
return true;
}
return false;
}

            </script>
                    </tr>
                  <? } ?>
              </table>
                <br />
                <table width="60%" border="0" cellpadding="0" cellspacing="0" class="page_link">
                  <tr>
                    <td align="left"><?
					
if($Num_Pages > 1){	

echo "<div class='paginate'>";

//First Pages
if($Page > 1)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=1'>หน้าแรก</a> ";
}else {
	echo " <span class='disabled'>หน้าแรก</span> ";
}

//Previous
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'>ย้อนกลับ</a> ";
}else {
	echo " <span class='disabled'>ย้อนกลับ</span> ";
}

// ...
if ($Num_Pages < 7 + ($stages * 2))	  // Not enough pages to breaking it up
		{	
		// Pages
		for($i=1; $i<=$Num_Pages; $i++){
			if($i == $Page)
			{
				echo "<b> <span  class='current'>$i </span></b>";
			}else{
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a>";
			}
		}
		
}else if($Num_Pages > 5 + ($stages * 2)) { // Enough pages to hide a few?
		// Beginning only hide later pages
		if($Page < 1 + ($stages * 2)){
				for ($i = 1; $i < 4 + ($stages * 2); $i++)
				{
					if ($i == $Page){ echo "<b> <span  class='current'>$i </span></b>";
					}else{ echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a>"; 
					}					
				}
				echo "...";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$LastPagem1'>$LastPagem1</a>";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$Num_Pages'>$Num_Pages</a>";	
// Middle hide some front and some back	
}else if($Num_Pages - ($stages * 2) > $Page && $Page > ($stages * 2)){
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=1'>1</a>";
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=2'>2</a>";
				echo "...";
				for ($i = $Page - $stages; $i <= $Page + $stages; $i++)
				{
					if ($i == $Page){
						echo "<b> <span  class='current'>$i </span></b>";
					}else{
						echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a>";
					}					
				}
				echo "...";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$LastPagem1'>$LastPagem1</a>";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$Num_Pages'>$Num_Pages</a>";		
// End only hide early pages
}else{
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=1'>1</a>";
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=2'>2</a>";
				echo "...";
				for ($i = $Num_Pages - (2 + ($stages * 2)); $i <= $Num_Pages; $i++)
				{
					if ($i == $Page){
						echo "<b> <span  class='current'>$i </span></b>";
					}else{
						echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a>";
					}						
				}
}}

// Next
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>หน้าถัดไป</a> ";
}else {
	echo " <span class='disabled'>หน้าถัดไป</span> ";
}

// Last Pages 
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Num_Pages'>ไปหน้าสุดท้าย</a> ";
}else {
	echo " <span class='disabled'>ไปหน้าสุดท้าย</span> ";
}


echo"</div>"; }
?></td>
                    </tr>
                </table>
                
                <br /></td>
          </tr>
        </table>
          </td>
      </tr>
       <tr>
        <td height="24" valign="middle" background="../images/button/six_2.gif" bgcolor="#0B4B95" class="text_link"><div align="center"><a href="#top" >กลับขึ้นไปด้านบน</a></div></td>
        </tr>
      <tr>
        <td valign="top" bgcolor="#0B4B95">&nbsp;</td>
      </tr>
    </table></td>
  </tr>
</table>
</body>
</html>




ปล.ขอบคุณค่ะ ^^



Tag : PHP, HTML/CSS









ประวัติการแก้ไข
2012-04-02 22:24:56
2012-04-03 07:16:24
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-04-02 22:24:02 By : Witchloves View : 944 Reply : 3
 

 

No. 1



โพสกระทู้ ( 5,146 )
บทความ ( 26 )

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

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


ผมว่า เวลาส่งข้อมูลหน้าไป

ยกตัวอย่างลิงค์หนึ่งนะครับ เช่น

Code
<a href='$_SERVER[SCRIPT_NAME]?Page=$LastPagem1'>$LastPagem1</a>


ก็เปลี่ยนเป็นการเพิ่มค่าที่เรา GET มาเข้าไปด้วย

Code
<a href='$_SERVER[SCRIPT_NAME]?Page=$LastPagem1&status_id=$_GET[status_id]'>$LastPagem1</a>



แต่ผมว่า ใช้ Ecshop อย่างเก่าก็ง่ายนา คริ คริ








ประวัติการแก้ไข
2012-04-03 05:55:49
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-04-03 05:55:07 By : deawx
 


 

No. 2



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



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


แหะๆๆๆ....ทำเป็นโปรเจ็คจบหน่ะค่ะ >.<

ทำได้แล้ว..ขอบคุณค่ะ -*- ใส่ผิดที่นี่เอง ไปใส่ด้านหน้า Page ซะงั้น 555+
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-04-03 07:20:07 By : Witchloves
 

 

No. 3



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



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


โค้ดที่แก้แล้วค่ะ

Code (PHP)
<?php 

require("../inc/connect.php"); 

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" >

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="../css/b_style.css">
<script type="text/javascript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>
</head>
<link rel="stylesheet" type="text/css" href="../css/page.css">
<body>
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
  <td colspan="2" valign="top" bgcolor="#1A58A3"><p align="left">
    <a name="top" id="top"></a></td>
  </tr>
  <tr>
    <td colspan="2" valign="top" bgcolor="#1F5FA9">&nbsp;</td>
  </tr>
  <tr>
    <td height="23" colspan="2" valign="middle" background="../images/button/six_2.gif" bgcolor="#17191A"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="3%">&nbsp;</td>
        <td width="97%" ></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td valign="top" bgcolor="#F0F0F0"><table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td align="center" valign="top"><br />
                <table width="98%" border="0" cellpadding="1" cellspacing="1">
                  <tr>
                    <td width="50%"><form id="form1" method="post" action="">
                      สถานะผู้ดูแล<span class="style24">
                      <select name="st" class="txtbox" onchange="MM_jumpMenu('parent',this,0)" id="st">
                        <option value="<?=$_SERVER['../bf/PHP_SELF'];?>">ทั้งหมด</option>
                        <?
$sql_group = "select * from status";
$dbquery_group = mysql_query($sql_group);
$num_rows_group = mysql_num_rows($dbquery_group);
while ($result_group = mysql_fetch_array($dbquery_group))
{
if($_GET["status_id"] == $result_group["status_id"])
{
$sel="selected";
}
else
{
$sel="";
}
?>
                        <option value="<?=$_SERVER['../bf/PHP_SELF'];?>?status_id=<?=$result_group["status_id"];?>" <?=$sel;?>>
                        <?=$result_group["status_name"];?>
                        </option>
                        <?
}
?>
                      </select>
                                        </form>
                    </td>
                    <td width="50%" align="right" class="add_link"><div align="right"><a href="../bf/bf_admin_add.php"><img src="../images/Add-icon.png" alt="" width="32" height="32" border="0" />เพิ่ม Admin</a></div></td>
                  </tr>
                </table>
                <table width="98%" border="0" cellpadding="1" cellspacing="1" bordercolor="#1F5FA9" class="stb">
                  <tr>
                    <td width="5%" align="center" valign="top" bgcolor="#C4DBF4"><div align="center">ลำดับ</div></td>
                    <td width="13%" align="center" valign="top" bgcolor="#C4DBF4"><div align="center">Username</div></td>
                    <td width="27%" align="center" valign="top" bgcolor="#C4DBF4">ชื่อ-นามสกุล</td>
                    <td width="28%" align="center" valign="top" bgcolor="#C4DBF4"><div align="center">Email</div></td>
                    </tr>
<?
  
  $condition="";
	  		if($_GET["status_id"] <> "")
			{
			$condition="and status_id='$_GET[status_id]' ";
			}
			
$strSQL = "SELECT * FROM admin ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$stages = 3; // ...
$Per_Page = 1;   // Per Page
	

$Page = $_GET["Page"];
if(!$_GET["Page"])
{
	$Page=1;
}

$Prev_Page = $Page-1;
$Next_Page = $Page+1;

$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
	$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
	$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
	$Num_Pages =($Num_Rows/$Per_Page)+1;
	$Num_Pages = (int)$Num_Pages;
}
$LastPagem1 = $Num_Pages-1;
$strSQL .=" Where 1 $condition order by admin_id ASC LIMIT $Page_Start , $Per_Page";
$objQuery  = mysql_query($strSQL);

$no = 0;
if($Page > 1)
{
		$no = ($Per_Page*$Page)-$Per_Page;
}
while($result = mysql_fetch_array($objQuery))
{
	$no++;
?>
                  <tr>
                    <td align="center" valign="top"><?=$no;?></td>
                    <td align="left" valign="top"><?=$result["admin_uname"];?></td>
                    <td align="left" valign="top"><?=$result["admin_name"];?>
                      &nbsp;
                      <?=$result["admin_lname"];?></td>
                    <td align="left" valign="top"><?=$result["admin_email"];?></td>
                    </tr>
                  <? } ?>
              </table>
                <br />
                <table width="60%" border="0" cellpadding="0" cellspacing="0" class="page_link">
                  <tr>
                    <td align="left">
					<?=$_SERVER['PHP_SELF'];?>?status_id="<?=$_GET[status_id]?>";
					<?
					
if($Num_Pages > 1){	

echo "<div class='paginate'>";

//First Pages
if($Page > 1)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=1&status_id=$_GET[status_id]'>หน้าแรก</a> ";
}else {
	echo " <span class='disabled'>หน้าแรก</span> ";
}

//Previous
if($Prev_Page)
{
	echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&status_id=$_GET[status_id]'>ย้อนกลับ</a> ";
}else {
	echo " <span class='disabled'>ย้อนกลับ</span> ";
}

// ...
if ($Num_Pages < 7 + ($stages * 2))	  // Not enough pages to breaking it up
		{	
		// Pages
		for($i=1; $i<=$Num_Pages; $i++){
			if($i == $Page)
			{
				echo "<b> <span  class='current'>$i </span></b>";
			}else{
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i&status_id=$_GET[status_id]'>$i</a>";
				
			}
		}
		
}else if($Num_Pages > 5 + ($stages * 2)) { // Enough pages to hide a few?
		// Beginning only hide later pages
		if($Page < 1 + ($stages * 2)){
				for ($i = 1; $i < 4 + ($stages * 2); $i++)
				{
					if ($i == $Page){ echo "<b> <span  class='current'>$i </span></b>";
					}else{ echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i&status_id=$_GET[status_id]'>$i</a>"; 
					}					
				}
				echo "...";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$LastPagem1&status_id=$_GET[status_id]'>$LastPagem1</a>";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$Num_Pages&status_id=$_GET[status_id]'>$Num_Pages</a>";	
// Middle hide some front and some back	
}else if($Num_Pages - ($stages * 2) > $Page && $Page > ($stages * 2)){
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=1&status_id=$_GET[status_id]'>1</a>";
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=2&status_id=$_GET[status_id]'>2</a>";
				echo "...";
				for ($i = $Page - $stages; $i <= $Page + $stages; $i++)
				{
					if ($i == $Page){
						echo "<b> <span  class='current'>$i </span></b>";
					}else{
						echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i&status_id=$_GET[status_id]'>$i</a>";
					}					
				}
				echo "...";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$LastPagem1&status_id=$_GET[status_id]'>$LastPagem1</a>";
				echo  "<a href='$_SERVER[SCRIPT_NAME]?Page=$Num_Pages&status_id=$_GET[status_id]'>$Num_Pages</a>";		
// End only hide early pages
}else{
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=1&status_id=$_GET[status_id]'>1</a>";
				echo "<a href='$_SERVER[SCRIPT_NAME]?Page=2&status_id=$_GET[status_id]'>2</a>";
				echo "...";
				for ($i = $Num_Pages - (2 + ($stages * 2)); $i <= $Num_Pages; $i++)
				{
					if ($i == $Page){
						echo "<b> <span  class='current'>$i </span></b>";
					}else{
						echo "<a href='$_SERVER[SCRIPT_NAME]?Page=$i&status_id=$_GET[status_id]'>$i</a>";
					}						
				}
}}

// Next
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&status_id=$_GET[status_id]'>หน้าถัดไป</a> ";
}else {
	echo " <span class='disabled'>หน้าถัดไป</span> ";
}

// Last Pages 
if($Page!=$Num_Pages)
{
	echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Num_Pages&status_id=$_GET[status_id]'>ไปหน้าสุดท้าย</a> ";
}else {
	echo " <span class='disabled'>ไปหน้าสุดท้าย</span> ";
}


echo"</div>"; }
?></td>
                    </tr>
                </table>
                
                <br /></td>
          </tr>
        </table>
          </td>
      </tr>
       <tr>
        <td height="24" valign="middle" background="../images/button/six_2.gif" bgcolor="#0B4B95" class="text_link"><div align="center"><a href="#top" >กลับขึ้นไปด้านบน</a></div></td>
        </tr>
      <tr>
        <td valign="top" bgcolor="#0B4B95">&nbsp;</td>
      </tr>
    </table></td>
  </tr>
</table>
</body>
</html>


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-04-03 09:11:07 By : Witchloves
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
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 05
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 อัตราราคา คลิกที่นี่