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 > export to excel แล้วไม่เคลียร์ค่าค่ะ แม้จะ refresh หรือ Ctrl+F5 แล้วก็ตาม



 

export to excel แล้วไม่เคลียร์ค่าค่ะ แม้จะ refresh หรือ Ctrl+F5 แล้วก็ตาม

 



Topic : 063296

Guest




เขียน export ข้อมูลออกมาเป็น .xls แล้วค่ะ แต่ปัญหาคือมันไม่เคลียร์ค่า หลังจากที่เปิดแล้วครั้งแรก ถ้าแก้ไขข้อมูลใดๆ อีกและจะ refresh ดูข้อมูลใหม่ มันจะเป็นข้อมูลเดิมค่ะ ต้องเพิ่ม code ส่วนใหนที่จะทำให้มันเคลียร์ค่าทุกครั้งคะ

ปล.ใช้ Ctrl+F5 แล้วก็ไม่ได้ค่ะ แต่ถ้าเปลี่ยนชื่อ file แล้ว refresh จะใช้งานได้

Code (PHP)
<?	
			//Export to excel	
			$objConnect = mysql_connect("localhost","root","111222") or die("Error Connect to Database");
			$objDB = mysql_select_db("lss");
			
			if($chk_month!="" && ($chk_year!="") && $chk_site!="") { 
			$strSQL = "select Distinct(dateFrom) from insertguest where (mFrom='$chk_month')AND(yFrom='$chk_year')AND(ghID='$chk_site') order by dateFrom";
			}else{
			$strSQL ="select Distinct(dateFrom) from insertguest where (mFrom='$chk_month')AND(yFrom='$chk_year')order by dateFrom";
			}
			$objQuery = mysql_query($strSQL);
			if($objQuery)
			{			
				//*** Get Document Path ***//
				$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp

				//*** Excel Document Root ***//
				$FileName="$chk_month$chk_year$chk_sitename";
				$strFileName = "MyXls/".$FileName.".xls";
				#$strFileName = "MyXls/Ex.xls";

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


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

				//*** Width & Height (A1:A1) ***//
				$xlApp->ActiveSheet->Range("A1:A1")->ColumnWidth = 10.0;	#Date
				$xlApp->ActiveSheet->Range("B1:B1")->ColumnWidth = 5.0; 	#No
				$xlApp->ActiveSheet->Range("C1:C1")->ColumnWidth = 15.0;	#HN
				$xlApp->ActiveSheet->Range("D1:D1")->ColumnWidth = 10.0;	#Title
				$xlApp->ActiveSheet->Range("E1:E1")->ColumnWidth = 30.0;	#Name	

				//*** Report Title ***//
				$xlApp->ActiveSheet->Range("A1:K1")->BORDERS->Weight = 1;
				$xlApp->ActiveSheet->Range("A1:K1")->MergeCells = True;
				$xlApp->ActiveSheet->Range("A1:K1")->Font->Bold = True;
				$xlApp->ActiveSheet->Range("A1:K1")->Font->Size = 16;
				$xlApp->ActiveSheet->Range("A1:K1")->HorizontalAlignment = -4108;				
				$xlApp->ActiveSheet->Cells(1,1)->Value = "DETAIL OF GUEST ATTENDANCES LAGUNA BANGKOK CLINIC IN.$FileName";

				//*** Header ***//		
				$xlApp->ActiveSheet->Cells(3,1)->Value = "DATE";
				$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 = "NO";
				$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 = "HN";
				$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 = "TITLE";
				$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 = "Guest's Name";
				$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;
				
				//***********//
				$intRows = 4;
				while($objResult = mysql_fetch_array($objQuery))
				{
				$dateFrom = $objResult['dateFrom'];
				
				//*** Detail ***//
				$xlApp->ActiveSheet->Cells($intRows,1)->Value = $dateFrom;
				$xlApp->ActiveSheet->Cells($intRows,1)->BORDERS->Weight = 1;
				$xlApp->ActiveSheet->Cells($intRows,1)->HorizontalAlignment = -4108;
				
				if($chk_month!="" && ($chk_year!="") && $chk_site!="") { 
				$sql="select * from insertguest,nation,ghotel,diagnosis,doctor where (insertguest.nID=nation.nID)AND(insertguest.ghID=ghotel.ghID)AND(insertguest.daID=diagnosis.daID)AND(insertguest.drID=doctor.drID)AND(insertguest.dateFrom='$dateFrom')AND(insertguest.ghID='$chk_site')";
				}else{
				$sql="select * from insertguest,nation,ghotel,diagnosis,doctor where (insertguest.nID=nation.nID)AND(insertguest.ghID=ghotel.ghID)AND(insertguest.daID=diagnosis.daID)AND(insertguest.drID=doctor.drID)AND(insertguest.dateFrom='$dateFrom')";
				}
				$result = mysql_query($sql);
				//$c=0;
				while($record = mysql_fetch_array($result))  {	
				$gHN = $record['gHN'];
					
				$gHN1=substr($gHN,0,2); //นับจากซ้ายมือเอา 2 ตัว  format = xx-xx-xxxxxx
				$gHN2=substr($gHN,2,2);
				$gHN3=substr($gHN,4,6);
				$z=$z+1;
				
				$xlApp->ActiveSheet->Cells($intRows,2)->Value = $z;
				$xlApp->ActiveSheet->Cells($intRows,2)->BORDERS->Weight = 1;
				$xlApp->ActiveSheet->Cells($intRows,2)->HorizontalAlignment = -4108;
				
				$xlApp->ActiveSheet->Cells($intRows,3)->Value = "$gHN1-$gHN2-$gHN3";
				$xlApp->ActiveSheet->Cells($intRows,3)->BORDERS->Weight = 1;
				
				$xlApp->ActiveSheet->Cells($intRows,4)->Value = $record["gTitle"];
				$xlApp->ActiveSheet->Cells($intRows,4)->BORDERS->Weight = 1;
				$xlApp->ActiveSheet->Cells($intRows,4)->HorizontalAlignment = -4108;
							
				$xlApp->ActiveSheet->Cells($intRows,5)->Value = $record["gName"];
				$xlApp->ActiveSheet->Cells($intRows,5)->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.		




Tag : PHP, MySQL







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-07-18 11:55:29 By : lucifer View : 1095 Reply : 2
 

 

No. 1



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

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

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

ลอง save ไฟล์เป็นชื่อใหม่ครับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-07-18 16:12:59 By : webmaster
 


 

No. 2

Guest


ขอบคุณค่ะ คุณ Win

แต่ถ้าไม่ต้องการเปลี่ยนเป็นชื่ออื่น (เนื่องจากชื่อไฟล์จะเอามาการเลือกของ user เอง ซึ่งจะ defult เป็น เดือนปี - 072011- format เอามาจาก user ซึ่งเป็นรูปแบบตายตัว)

ใน 1 เดือน user จะ export หลายครั้ง ในแต่ละครั้งก็จะเป็น file ชื่อเดิม

ถ้าหลีกเลี่ยงไม่ได้แบบนี้ มีวิธีแก้ไขอย่างอื่นอีกใหมคะ

ปล.ดิฉันไม่ได้กด save นะคะ แต่ใช้วิธีการ open เพื่อดูผลลัพธ์ค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-07-18 17:44:40 By : lucifer
 

   

ค้นหาข้อมูล


   
 

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