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 > การออกรายงานใน word คือผมอยากออกรายงานเป็น word ควรทำยังไงครับ



 

การออกรายงานใน word คือผมอยากออกรายงานเป็น word ควรทำยังไงครับ

 



Topic : 039918

Guest




โทษนะครับ คือผมอยากออกรายงานเป็น word ควรทำยังไงครับ
ต้องใส่โค๊ต หรือ query ยังไง พอมีตัวอย่างให้ดูใหม่ครับ
คือผมออกรายงานสรุปทั้งหมด ในครั้งเดียว



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-03-05 10:44:12 By : cs25 View : 1521 Reply : 5
 

 

No. 1



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



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


https://www.thaicreate.com/php/php-word.application-builtindocumentproperties.html






Date : 2010-03-05 11:37:01 By : e_tawee
 


 

No. 2



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

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

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

Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Word.Application Tutorial</title>
</head>
<body>
<?
	$wdAlignParagraphCenter = "1";
	$wdAlignParagraphRight = "2";

	$Wrd = new COM("Word.Application");
	$DocName = "MyDoc/MyWord.doc";
	$Wrd->Application->Visible = False;

	//$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp

	$WrdDoc = $Wrd->Documents->Open(realpath("thaicreate.dot"));
	
	$MyRange1 = $WrdDoc->Paragraphs->Add->Range;
	$MyRange1->ParagraphFormat->Alignment = $wdAlignParagraphCenter;
	$MyRange1->Font->Name = "Verdana";
	$MyRange1->Font->Size = "20";	
	$MyRange1->Font->Bold = True;
	$MyRange1->InsertBefore("Customer Report".chr(13));


	$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);
	$intRows = mysql_num_rows($objQuery);

	$MyRange2 = $WrdDoc->Paragraphs->Add->Range;
	$MyRange2->Font->Size = "10";
	$objTable = $Wrd->ActiveDocument->Tables->Add($MyRange2,$intRows+1,6,1,2); //** Range,Rows,Column **//
	
	//*** Header ***//
	$objTable->Cell(1,1)->Range->InsertAfter("CustomerID");
	$objTable->Cell(1,1)->Range->Bold = True;
	$objTable->Cell(1,1)->Range->ParagraphFormat->Alignment = 1;

	$objTable->Cell(1,2)->Range->InsertAfter("Name");
	$objTable->Cell(1,2)->Range->Bold = True;
	$objTable->Cell(1,2)->Range->ParagraphFormat->Alignment = 1;

	$objTable->Cell(1,3)->Range->InsertAfter("Email");
	$objTable->Cell(1,3)->Range->Bold = True;
	$objTable->Cell(1,3)->Range->ParagraphFormat->Alignment = 1;

	$objTable->Cell(1,4)->Range->InsertAfter("CountryCode");
	$objTable->Cell(1,4)->Range->Bold = True;
	$objTable->Cell(1,4)->Range->ParagraphFormat->Alignment = 1;

	$objTable->Cell(1,5)->Range->InsertAfter("Budget");
	$objTable->Cell(1,5)->Range->Bold = True;
	$objTable->Cell(1,5)->Range->ParagraphFormat->Alignment = 1;

	$objTable->Cell(1,6)->Range->InsertAfter("Used");
	$objTable->Cell(1,6)->Range->Bold = True;
	$objTable->Cell(1,6)->Range->ParagraphFormat->Alignment = 1;


	//*** Detail ***//
	$intRows = 1;
	while($result = mysql_fetch_array($objQuery))
	{
		$intRows++;
		$objTable->Cell($intRows,1)->Range->InsertAfter($result["CustomerID"]);
		$objTable->Cell($intRows,1)->Range->ParagraphFormat->Alignment = 1;

		$objTable->Cell($intRows,2)->Range->InsertAfter($result["Name"]);
		$objTable->Cell($intRows,2)->Range->ParagraphFormat->Alignment = 0;

		$objTable->Cell($intRows,3)->Range->InsertAfter($result["Email"]);
		$objTable->Cell($intRows,3)->Range->ParagraphFormat->Alignment = 0;

		$objTable->Cell($intRows,4)->Range->InsertAfter($result["CountryCode"]);
		$objTable->Cell($intRows,4)->Range->ParagraphFormat->Alignment = 1;

		$objTable->Cell($intRows,5)->Range->InsertAfter(number_format($result["Budget"],2));
		$objTable->Cell($intRows,5)->Range->ParagraphFormat->Alignment = 2;

		$objTable->Cell($intRows,6)->Range->InsertAfter(number_format($result["Used"],2));
		$objTable->Cell($intRows,6)->Range->ParagraphFormat->Alignment = 2;
	}

	$MyRange3 = $WrdDoc->Paragraphs->Add->Range;
	$MyRange3->ParagraphFormat->Alignment = $wdAlignParagraphRight;
	$MyRange3->Font->Name = "Verdana";
	$MyRange3->Font->Size = "10";	
	$MyRange3->InsertBefore(chr(13).chr(13).chr(13)." ................................Manager".chr(13).date("Y-m-d H:i:s"));

	//$WrdDoc->SaveAs($strPath."/".$DocName);
	$WrdDoc->SaveAs(realpath($DocName));
	$Wrd->Application->Quit;
	$Wrd = null;
?>
Word Created <a href="<?=$DocName?>">Click here</a> to Download.
</body>
</html>


PHP & Word (Word.Application) - Word Document Sample Report
Date : 2010-03-05 13:41:18 By : webmaster
 

 

No. 3

Guest


ขอบคุณมากครับ
Date : 2010-03-06 21:11:00 By : cs_25
 


 

No. 4



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



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

จากโค้ดทางด้านบนบรรทัดที่ 10

$Wrd = new COM("Word.Application");

มัน Error อะครับ

นี่ครับ Fatal error: Uncaught exception 'com_exception' with message 'Failed to create COM object `Word.Application': CoInitialize has not been called. ' in C:\AppServ\www\e\w.php:7 Stack trace: #0 C:\AppServ\www\e\w.php(7): com->com('Word.Applicatio...') #1

ผมไม่รู้ว่าต้องไป Config อะรัยที่ตัว windows ใหม่่รึป่าว

ท่านผู้รุ้ท่านใดที่สามารถแนะนำให้ไได้กรุณาด้วยนะครับ
Date : 2010-08-10 13:34:27 By : batiscom
 


 

No. 5



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

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

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

ตรวจสอบเรื่องสิทธิ์ด้วยน่ะครับ

Go to : PHP Config Word (Word.Application)
Date : 2010-08-10 14:02:57 By : webmaster
 

   

ค้นหาข้อมูล


   
 

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