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 > รบกวนขอ code convert php to excel , pdf ทีครับ รบกวนขอ วิธี เขียน php convert code ด้านล่างนี้



 

รบกวนขอ code convert php to excel , pdf ทีครับ รบกวนขอ วิธี เขียน php convert code ด้านล่างนี้

 



Topic : 032819

Guest




รบกวนขอ วิธี เขียน php convert code ด้านล่างนี้ เป็น xls , pdf ทีครับ
จะรบกวนขอเป็นตัวอย่างนะครับ

<!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="500" border="3" cellspacing="0" cellpadding="0">
  <tr>
    <td colspan="2" align="center" bgcolor="#666666">ทดสอบ</td>
  </tr>
  <tr>
    <td width="146">title1</td>
    <td width="344">test1</td>
  </tr>
  
  <tr>
    <td rowspan="2" bgcolor="#0000FF">title2title3</td>
    <td>test2</td>
  </tr>
  <tr>
    <td>test3</td>
  </tr>
  <tr>
    <td>title4</td>
    <td>test4</td>
  </tr>
  <tr>
    <td>title5</td>
    <td>test5</td>
  </tr>
</table>
</body>
</html>


รบกวนด้วยนะครับ
ขอบคุณมากครับ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-10-09 13:29:54 By : bai View : 5131 Reply : 9
 

 

No. 1



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

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

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


ได้ลองพยายามหาในเว็บนี้บ้างหรือยังครับ

ลองเข้าไปอ่านดูนะครับ เผื่อมีประโยชน์

PHP PDF Function

PHP Excel (PHP Class)

PHP Excel (Excel.Application)

สู้ๆๆ นะครับ เอาใจช่วย






Date : 2009-10-09 13:58:09 By : pokultra
 


 

No. 2



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

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

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

เข้าตามที่ ท่าน Rastafari เลยครับ ผมก็เคยเข้าไปดู แจ่มๆทั้งนั้นเลยครับ
Date : 2009-10-09 20:24:08 By : nerobenz
 

 

No. 3



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

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

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

Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP(COM) Excel.Application Tutorial</title>
</head>
<body>
<?
		$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
		$objDB = mysql_select_db("mydatabase");
		$strSQL = "SELECT * FROM customer";
		$objQuery = mysql_query($strSQL);
		if($objQuery)
		{			
				//*** Get Document Path ***//
				$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp

				//*** Excel Document Root ***//
				$strFileName = "MyXls/MyExcel.xls";

				//*** Connect to Excel.Application ***//
				$xlApp = new COM("Excel.Application");
				$xlBook = $xlApp->Workbooks->Add();


				//*** Create Sheet 1 ***//
				$xlBook->Worksheets(1)->Name = "My Customer";							
				$xlBook->Worksheets(1)->Select;

				//*** Width & Height (A1:A1) ***//
				$xlApp->ActiveSheet->Range("A1:A1")->ColumnWidth = 10.0;
				$xlApp->ActiveSheet->Range("B1:B1")->ColumnWidth = 13.0;
				$xlApp->ActiveSheet->Range("C1:C1")->ColumnWidth = 23.0;
				$xlApp->ActiveSheet->Range("D1:D1")->ColumnWidth = 12.0;
				$xlApp->ActiveSheet->Range("E1:E1")->ColumnWidth = 13.0;
				$xlApp->ActiveSheet->Range("F1:F1")->ColumnWidth = 12.0;

				//*** Report Title ***//
				$xlApp->ActiveSheet->Range("A1:F1")->BORDERS->Weight = 1;
				$xlApp->ActiveSheet->Range("A1:F1")->MergeCells = True;
				$xlApp->ActiveSheet->Range("A1:F1")->Font->Bold = True;
				$xlApp->ActiveSheet->Range("A1:F1")->Font->Size = 20;
				$xlApp->ActiveSheet->Range("A1:F1")->HorizontalAlignment = -4108;				
				$xlApp->ActiveSheet->Cells(1,1)->Value = "Customer Report";

				//*** Header ***//				
				$xlApp->ActiveSheet->Cells(3,1)->Value = "CustomerID";
				$xlApp->ActiveSheet->Cells(3,1)->Font->Bold = True;
				$xlApp->ActiveSheet->Cells(3,1)->VerticalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,1)->HorizontalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,1)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells(3,2)->Value = "Name";
				$xlApp->ActiveSheet->Cells(3,2)->Font->Bold = True;
				$xlApp->ActiveSheet->Cells(3,2)->VerticalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,2)->HorizontalAlignment = -4108;
				$xlApp->ActiveSheet->Cells(3,2)->BORDERS->Weight = 1;
					
				$xlApp->ActiveSheet->Cells(3,3)->Value = "Email";
				$xlApp->ActiveSheet->Cells(3,3)->Font->Bold = True;
				$xlApp->ActiveSheet->Cells(3,3)->VerticalAlignment = -4108;
				$xlApp->ActiveSheet->Cells(3,3)->HorizontalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,3)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells(3,4)->Value = "CountryCode";
				$xlApp->ActiveSheet->Cells(3,4)->Font->Bold = True;
				$xlApp->ActiveSheet->Cells(3,4)->VerticalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,4)->HorizontalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,4)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells(3,5)->Value = "Budget";
				$xlApp->ActiveSheet->Cells(3,5)->Font->Bold = True;
				$xlApp->ActiveSheet->Cells(3,5)->VerticalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,5)->HorizontalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,5)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells(3,6)->Value = "Used";
				$xlApp->ActiveSheet->Cells(3,6)->Font->Bold = True;
				$xlApp->ActiveSheet->Cells(3,6)->VerticalAlignment = -4108; 
				$xlApp->ActiveSheet->Cells(3,6)->HorizontalAlignment = -4108;
				$xlApp->ActiveSheet->Cells(3,6)->BORDERS->Weight = 1;

				//***********//
			
				$intRows = 4;
				while($objResult = mysql_fetch_array($objQuery))
				{
				
				//*** Detail ***//
				$xlApp->ActiveSheet->Cells($intRows,1)->Value = $objResult["CustomerID"];
				$xlApp->ActiveSheet->Cells($intRows,1)->BORDERS->Weight = 1;
				$xlApp->ActiveSheet->Cells($intRows,1)->HorizontalAlignment = -4108;
				
				$xlApp->ActiveSheet->Cells($intRows,2)->Value = $objResult["Name"];
				$xlApp->ActiveSheet->Cells($intRows,2)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells($intRows,3)->Value = $objResult["Email"];
				$xlApp->ActiveSheet->Cells($intRows,3)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells($intRows,4)->Value = $objResult["CountryCode"];
				$xlApp->ActiveSheet->Cells($intRows,4)->HorizontalAlignment = -4108;
				$xlApp->ActiveSheet->Cells($intRows,4)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells($intRows,5)->Value = $objResult["Budget"];
				$xlApp->ActiveSheet->Cells($intRows,5)->BORDERS->Weight = 1;
				$xlApp->ActiveSheet->Cells($intRows,5)->NumberFormat = "$#,##0.00";
				
				$xlApp->ActiveSheet->Cells($intRows,6)->Value = $objResult["Used"];
				$xlApp->ActiveSheet->Cells($intRows,6)->BORDERS->Weight = 1;

				$intRows++;
				}				
								
				@unlink($strFileName); //*** Delete old files ***//	

				$xlBook->SaveAs($strPath."/".$strFileName); //*** Save to Path ***//
				//$xlBook->SaveAs(realpath($strFileName)); //*** Save to Path ***//

				//*** Close & Quit ***//
				$xlApp->Application->Quit();
				$xlApp = null;
				$xlBook = null;
				$xlSheet1 = null;

		}

			mysql_close($objConnect);		

?>
Excel Created <a href="<?=$strFileName?>">Click here</a> to Download.
</body>
</html>


Ref : PHP Export Database to Excel Report/Print Format (Excel.Application)
Date : 2009-10-09 22:31:16 By : webmaster
 


 

No. 4



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

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

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

Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
</head>
<body>

<?php
require('fpdf.php');

class PDF extends FPDF
{
//Load data
function LoadData($file)
{
	//Read file lines
	$lines=file($file);
	$data=array();
	foreach($lines as $line)
		$data[]=explode(';',chop($line));
	return $data;
}

//Simple table
function BasicTable($header,$data)
{
	//Header
	$w=array(30,30,55,25,20,20);
	//Header
	for($i=0;$i<count($header);$i++)
		$this->Cell($w[$i],7,$header[$i],1,0,'C');
	$this->Ln();
	//Data
	foreach ($data as $eachResult) 
	{
		$this->Cell(30,6,$eachResult["CustomerID"],1);
		$this->Cell(30,6,$eachResult["Name"],1);
		$this->Cell(55,6,$eachResult["Email"],1);
		$this->Cell(25,6,$eachResult["CountryCode"],1,0,'C');
		$this->Cell(20,6,$eachResult["Budget"],1);
		$this->Cell(20,6,$eachResult["Budget"],1);
		$this->Ln();
	}
}

//Better table
function ImprovedTable($header,$data)
{
	//Column widths
	$w=array(20,30,55,25,25,25);
	//Header
	for($i=0;$i<count($header);$i++)
		$this->Cell($w[$i],7,$header[$i],1,0,'C');
	$this->Ln();
	//Data

	foreach ($data as $eachResult) 
	{
		$this->Cell(20,6,$eachResult["CustomerID"],1);
		$this->Cell(30,6,$eachResult["Name"],1);
		$this->Cell(55,6,$eachResult["Email"],1);
		$this->Cell(25,6,$eachResult["CountryCode"],1,0,'C');
		$this->Cell(25,6,number_format($eachResult["Budget"],2),1,0,'R');
		$this->Cell(25,6,number_format($eachResult["Budget"],2),1,0,'R');
		$this->Ln();
	}





	//Closure line
	$this->Cell(array_sum($w),0,'','T');
}

//Colored table
function FancyTable($header,$data)
{
	//Colors, line width and bold font
	$this->SetFillColor(255,0,0);
	$this->SetTextColor(255);
	$this->SetDrawColor(128,0,0);
	$this->SetLineWidth(.3);
	$this->SetFont('','B');
	//Header
	$w=array(20,30,55,25,25,25);
	for($i=0;$i<count($header);$i++)
		$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
	$this->Ln();
	//Color and font restoration
	$this->SetFillColor(224,235,255);
	$this->SetTextColor(0);
	$this->SetFont('');
	//Data
	$fill=false;
	foreach($data as $row)
	{
		$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
		$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
		$this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
		$this->Cell($w[3],6,$row[3],'LR',0,'C',$fill);
		$this->Cell($w[4],6,number_format($row[4]),'LR',0,'R',$fill);
		$this->Cell($w[5],6,number_format($row[5]),'LR',0,'R',$fill);
		$this->Ln();
		$fill=!$fill;
	}
	$this->Cell(array_sum($w),0,'','T');
}
}

$pdf=new PDF();
//Column titles
$header=array('CustomerID','Name','Email','Country Code','Budget','Used');
//Data loading

//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL);
$resultData = array();
for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
	$result = mysql_fetch_array($objQuery);
	array_push($resultData,$result);
}
//************************//



$pdf->SetFont('Arial','',10);

//*** Table 1 ***//
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->BasicTable($header,$resultData);

//*** Table 2 ***//
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->ImprovedTable($header,$resultData);

//*** Table 3 ***//
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->FancyTable($header,$resultData);

$pdf->Output("MyPDF/MyPDF.pdf","F");
?>

PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>


Ref : PHP PDF - MySQL Export to PDF
Date : 2009-10-09 22:33:06 By : webmaster
 


 

No. 5



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

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

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


พี่วินใจดีจังเลยนะครับ

ผมบ้างทีลองพยายามดูบ้างก็ดีนะครับ
Date : 2009-10-09 23:23:17 By : pokultra
 


 

No. 6



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

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

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

ของพี่วินนี่แหละครับ สุดยอดเลย
Date : 2009-10-09 23:34:36 By : extenser
 


 

No. 7

Guest


ก้อพี่เขาเก่ง เขาไม่ห่วงวิชา

เขาโค้ดพี่เขาไปใช่ว่าจะเข้าเลยนะ ต้องทำความเข้าใจอิก งง ๕๕๕๕
Date : 2010-03-26 13:45:45 By : tarn
 


 

No. 8

Guest


Fatal error: Maximum execution time of 30 seconds exceeded in C:\AppServ\www\purchase\login\phptoexcel.php on line 90
ตัวอย่าง CODE PHP

<!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>
<?
$objconnect = mysql_connect("localhost","root","741") or die("Error Connect to Database");
$objDB = mysql_select_db("material4");
$strSQL = "SELECT * from TABEL_PURCHASE";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
// ***Get Document Path***//
$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:AppServ/www/myphp
//*** Excel Document Root ***//
$strFileName = "MyXls/MyExcel.xls";
//***connect to Excel.Application ***//
$xlApp = new COM("Excel.Application");
$xlBook = $xlApp->Workbooks->Add();
//*** Create Sheet 1***//
$xlBook->Worksheets(1)->Name = "My PURCHASE";
$xlBook->Worksheets(1)->Select;
//*** Width & Height (A1:A1)***//
$xlApp->ActiveSheet->Range("A1:A1")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("B1:B1")->ColumnWidth = 50.0;
$xlApp->ActiveSheet->Range("C1:C1")->ColumnWidth = 23.0;
$xlApp->ActiveSheet->Range("D1:D1")->ColumnWidth = 12.0;
$xlApp->ActiveSheet->Range("E1:E1")->ColumnWidth = 13.0;
$xlApp->ActiveSheet->Range("F1:F1")->ColumnWidth = 12.0;
// *** Report Title ***//
$xlApp->ActiveSheet->Range("A1:F1")->BORDERS->Weight = 1;
$xlApp->ActiveSheet->Range("A1:F1")->MergeCells = True;
$xlApp->ActiveSheet->Range("A1:F1")->Font->Bold = True;
$xlApp->ActiveSheet->Range("A1:F1")->Font->Size = 20;
$xlApp->ActiveSheet->Range("A1:F1")->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells(1,1)->Value = "ข้อมูลความคืบหน้าของงานจัดหาซื้อจัดหาของส่วนพัสดุที่4";
//*** Header ***//
$xlApp->ActiveSheet->Cells(3,1)->Value = "เลขที่ใบขอเสนอซื้อ";
$xlApp->ActiveSheet->Cells(3,1)->Font->Bold = True;
$xlApp->ActiveSheet->Cells(3,1)->VerticalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,1)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,1)->BORDERS->Weight = 1;

$xlApp->ActiveSheet->Cells(3,2)->Value = "รายละเอียดงาน";
$xlApp->ActiveSheet->Cells(3,2)->Font->Bold = True;
$xlApp->ActiveSheet->Cells(3,2)->VerticalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,2)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,2)->BORDERS->Weight = 1;

$xlApp->ActiveSheet->Cells(3,3)->Value = "ประเภทงบ";
$xlApp->ActiveSheet->Cells(3,3)->Font->Bold = True;
$xlApp->ActiveSheet->Cells(3,3)->VerticalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,3)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,3)->BORDERS->Weight = 1;

$xlApp->ActiveSheet->Cells(3,4)->Value = "ปีงบประมาณ";
$xlApp->ActiveSheet->Cells(3,4)->Font->Bold = True;
$xlApp->ActiveSheet->Cells(3,4)->VerticalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,4)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,4)->BORDERS->Weight = 1;

$xlApp->ActiveSheet->Cells(3,5)->Value = "วงเงินงบปรมาณ";
$xlApp->ActiveSheet->Cells(3,5)->Font->Bold = True;
$xlApp->ActiveSheet->Cells(3,5)->VerticalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,5)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,5)->BORDERS->Weight = 1;

$xlApp->ActiveSheet->Cells(3,6)->Value = "เจ้าของงบปรมาณ";
$xlApp->ActiveSheet->Cells(3,6)->Font->Bold = True;
$xlApp->ActiveSheet->Cells(3,6)->VerticalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,6)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells(3,6)->BORDERS->Weight = 1;

//*********//
$intRows=4;
while($objResult = mysql_fetch_array($objQuery))
{
//*** Detail ***//
$xlApp->ActiveSheet->Cells($intRows,1)->Value = $objResult["PR_PURCHASE"];
$xlApp->ActiveSheet->Cells($intRows,1)->BORDERS->Weight =1;
$xlApp->ActiveSheet->Cells($intRows,1)->HorizontalAlignment = -4108;

$xlApp->ActiveSheet->Cells($intRows,2)->Value = $objResult["DETAIL_PR"];
$xlApp->ActiveSheet->Cells($intRows,2)->BORDERS->Weight =1;

$xlApp->ActiveSheet->Cells($intRows,3)->Value = $objResult["BUDGET_TYPE"];
$xlApp->ActiveSheet->Cells($intRows,3)->BORDERS->Weight =1;

$xlApp->ActiveSheet->Cells($intRows,4)->Value = $objResult["BUDGET_YEAR"];
$xlApp->ActiveSheet->Cells($intRows,4)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,4)->BORDERS->Weight =1;

$xlApp->ActiveSheet->Cells($intRows,5)->Value = $objResult["BUGET_AMOUNT"];
$xlApp->ActiveSheet->Cells($intRows,5)->BORDERS->Weight = 1;
$xlApp->ActiveSheet->Cells($intRows,5)->NumberFormat ="$###,###,##0.00";

$xlApp->ActiveSheet->Cells($intRows,6)->Value = $objResult["BUDGET_OWNNER"];
$xlApp->ActiveSheet->Cells($intRows,6)->BORDERS->Weight = 1;
$intRows++;
}
@unlink($strFileName); //*** Delete old files ***//
$xlBook->SaveAs($strPath."/".$strFileName); //*** Save to Path ***//
//$xlBook->SaveAs(realpath($strFileName)); //*** Save to Path ***//

//*** Close & Quit ***//
$xlApp->Application->Quit();
$xlApp= null;
$xlBook = null;
$xlSheet1 = null;
}
mysql_close($objConnect);
?>
Excel Created<a href="<?=$strFileName?>" >Click here</a>to Download.
</body>
</html>
เกิด error แบบนี้มีข้อผิดพลาดตรงไหน
Date : 2010-04-26 16:33:21 By : ณัฐ
 


 

No. 9

Guest


หัวคอลัมน์ไม่เป็นภาษาไทย
Date : 2010-04-27 00:36:10 By : a
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : รบกวนขอ code convert php to excel , pdf ทีครับ รบกวนขอ วิธี เขียน php convert code ด้านล่างนี้
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่