|
|
|
export excel file ไม่ได้ ครับ IIS6 ใน เครื่อง Windows Server 2003 ที่ได้ทำการ Setting รัน ภาษา PHP ไว้ |
|
|
|
|
|
|
|
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>::รายการ Schedule Delivery::</title>
</head>
<body>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="1250">
<tr>
<td align="center" colspan="18">
<?php
$Id_Dept=$_REQUEST["id_dept"];
$Schedule_Date=$_REQUEST["schedule_date"];
if($Id_Dept=="" || $Schedule_Date==""){
echo "<font face=\"sans-serif\" size=\"2\">กรุณากรอกข้อมูลให้ครบด้วยค่ะ</font>
<META HTTP-EQUIV=\"Refresh\" CONTENT=\"5;URL=frm_seach_scheddelivery.php\">";
?>
</td>
</tr>
<tr>
<td align="center">
<img src="Image/admin/loading.gif" border="0" />
</td>
</tr>
<?php
}else{
?>
<tr>
<td align="center" colspan="18">
<?php
$Id_Dept=$_REQUEST["id_dept"];
$Schedule_Date=$_REQUEST["schedule_date"];
if($Id_Dept==1){
echo "<h2>Shipping Of CS-Import</h2>";
?>
</td>
</tr>
<tr>
<td align="right" colspan="18">
<font face="sans-serif" size="2"><b><? echo $Schedule_Date?></b></font>
</td>
</tr>
<tr>
<td align="center" colspan="18">
<hr />
</td>
</tr>
<?php
}elseif($Id_Dept==2){
echo "<h2>Morning Meeting Report</h2>";
?>
</td>
</tr>
<tr>
<td align="right" colspan="18">
<font face="sans-serif" size="2"><b><? echo $Schedule_Date?></b></font>
</td>
</tr>
<tr>
<td align="center" colspan="18">
<hr />
</td>
</tr>
</table>
<?php
}
?>
<?php
//Report Scheduledelivery Cs-Import
if($Id_Dept==1){
?>
<table align="center" border="1" cellpadding="0" cellspacing="0" width="1250">
<tr>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Client</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Invoice</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>FWD Incharge</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>G/W</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>M3</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>20</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>40</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Shipping</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Vessel ETA</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Port</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Time</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Finish Inspect<br />(Time)</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Plan</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Actual</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Time(Actual)</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Transport Tation</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Remark</b></font>
</td>
</tr>
<?php
$Id_Dept=$_REQUEST["id_dept"];
$Schedule_Date=$_REQUEST["schedule_date"];
include "connect.php";
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM schedule_im
LEFT JOIN employee ON (schedule_im.ID=employee.ID)
LEFT JOIN company ON (schedule_im.Id_Company=company.Id_Company)
WHERE schedule_im.Schedule_Date='$Schedule_Date'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Result=mysql_num_rows($objQuery);
if($Result==0){
?>
<tr>
<td align="center" colspan="18">
<font face="sans-serif" size="2" color="#FF0000">
<?php
echo "ไม่มีข้อมูล";
?>
</font>
</td>
</tr>
<?php
}else{
while($objResult = mysql_fetch_array($objQuery)){
$Name_Company=$objResult["Name_Company"];
$Invoice=$objResult["Invoice"];
$Name_Emp=$objResult["Name"];
$GW=$objResult["G_W"];
$M3=$objResult["M3"];
$C20=$objResult["C_20"];
$C40=$objResult["C_40"];
$N_Shipping=$objResult["N_Shipping"];
$ETA=$objResult["ETA"];
$Port=$objResult["Port"];
$Time=$objResult["Time"];
$F_Inspect=$objResult["F_Inspect"];
$Plan=$objResult["Plan"];
$W_Actual=$objResult["W_Actual"];
$T_Actual=$objResult["T_Actual"];
$Transport=$objResult["Transport"];
$Remark=$objResult["Remark"];
$i++;
if($i%2==0)
{
$bg = "#FFFFFF";
}else{
$bg = "#CCCCCC";
}
?>
<tr>
<td align="left" width="150" bgcolor="<?=$bg;?>">
<?php
if($Name_Company==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Name_Company</font>";
}
?>
</td>
<td align="left" width="100" bgcolor="<?=$bg;?>">
<?php
if($Invoice==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Invoice</font>";
}
?>
</td>
<td align="left" width="100" bgcolor="<?=$bg;?>">
<?php
if($Name_Emp==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Name_Emp</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($GW==""){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
?>
<font face="sans-serif" size="1">
<?php
echo number_format($GW,2,".",",");
}
?>
</font>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($M3==""){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
?>
<font face="sans-serif" size="1">
<?php
echo number_format($M3,2,".",",");
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($C20==""){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$C20</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($C40==""){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$C40</font>";
}
?>
</td>
<td align="center" width="100" bgcolor="<?=$bg;?>">
<?php
if($N_Shipping==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$N_Shipping</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($ETA==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$ETA</font>";
}
?>
</td>
<td align="center" width="50" bgcolor="<?=$bg;?>">
<?php
if($Port==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Port</font>";
}
?>
</td>
<td align="center" width="50" bgcolor="<?=$bg;?>">
<?php
if($Time==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Time</font>";
}
?>
</td>
<td align="center" width="100" bgcolor="<?=$bg;?>">
<?php
if($F_Inspect==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$F_Inspect</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($Plan==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$Plan</font>";
}
?>
</td>
<td align="center" width="50" bgcolor="<?=$bg;?>">
<?php
if($W_Actual==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$W_Actual</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($T_Actual==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$T_Actual</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($Transport==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Transport</font>";
}
?>
</td>
<td align="left" width="150" bgcolor="<?=$bg;?>">
<?php
if($Remark==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$Remark</font>";
}
?>
</td>
</tr>
<?php
}
}
?>
<tr>
<td align="center" colspan="3" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Total</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(G_W) FROM schedule_im WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(G_W)'];
?>
<font face="sans-serif" size="1">
<?php
echo number_format($rs,2,".",",");
}
?>
</font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(M3) FROM schedule_im WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(M3)'];
?>
<font face="sans-serif" size="1">
<?php
echo number_format($rs,2,".",",");
}
?>
</font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(C_20) FROM schedule_im WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(C_20)'];
?>
<font face="sans-serif" size="1">
<?php
echo $rs;
}
?>
</font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(C_40) FROM schedule_im WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(C_40)'];
?>
<font face="sans-serif" size="1">
<?php
echo $rs;
}
?>
</font>
</td>
<td align="center" colspan="10" bgcolor="#B0E2FF"></td>
</tr>
<table width="1250" border="0" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
<!--Print Preview-->
<td width="33">
<img src="Image/btn/print03.gif" border="0" width="33" height="34" id="btnPrint" onClick="JavaScript:window.print();">
</td>
<td width="10"> </td>
<!--Export To Excel File Schedule Delivery CS-IMPORT-->
<td width="43">
<?php
include "connect.php";
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM schedule_im
LEFT JOIN employee ON (schedule_im.ID=employee.ID)
LEFT JOIN company ON (schedule_im.Id_Company=company.Id_Company)
WHERE schedule_im.Schedule_Date='$Schedule_Date'";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
//*** Get Document Path ***//
$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/sankyu/
//*** Excel Document Root ***//
$strFileName = "myfile.xls";
//*** Connect to Excel.Application ***//
$xlApp = new COM("Excel.Application");
$xlBook = $xlApp->Workbooks->Add();
//*** Create Sheet 1 ***//
$xlBook->Worksheets(1)->Name = "Schedule$Schedul_Date";
$xlBook->Worksheets(1)->Select;
//*** Title ***//
$xlApp->ActiveSheet->Range("A1:Q1")->MergeCells = True;
$xlApp->ActiveSheet->Range("A1:Q1")->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Range("A1:Q1")->Font->Bold = True;
$xlApp->ActiveSheet->Range("A1:Q1")->Font->Size = 20;
$xlApp->ActiveSheet->Cells(1,1)->Value = "Shipping Of CS-Import";
//*** Aligment Center ***//
$xlApp->ActiveSheet->Range("A2:Q2")->HorizontalAlignment = -4108;
//*** Width Cell Excel File ***//
$xlApp->ActiveSheet->Range("A2:A2")->ColumnWidth = 40.0;
$xlApp->ActiveSheet->Range("B2:B2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("C2:C2")->ColumnWidth = 30.0;
$xlApp->ActiveSheet->Range("D2:D2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("E2:E2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("F2:F2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("G2:G2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("H2:H2")->ColumnWidth = 25.0;
$xlApp->ActiveSheet->Range("I2:I2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("J2:J2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("K2:K2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("L2:L2")->ColumnWidth = 18.0;
$xlApp->ActiveSheet->Range("M2:M2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("N2:N2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("O2:O2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("P2:P2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("Q2:Q2")->ColumnWidth = 20.0;
//*** Header ***//
$xlApp->ActiveSheet->Cells(2,1)->Value = "Client";
$xlApp->ActiveSheet->Cells(2,2)->Value = "Invoice";
$xlApp->ActiveSheet->Cells(2,3)->Value = "FWDIncharge";
$xlApp->ActiveSheet->Cells(2,4)->Value = "G/W";
$xlApp->ActiveSheet->Cells(2,5)->Value = "M3";
$xlApp->ActiveSheet->Cells(2,6)->Value = "20";
$xlApp->ActiveSheet->Cells(2,7)->Value = "40";
$xlApp->ActiveSheet->Cells(2,8)->Value = "Shipping";
$xlApp->ActiveSheet->Cells(2,9)->Value = "VesselETA";
$xlApp->ActiveSheet->Cells(2,10)->Value = "Port";
$xlApp->ActiveSheet->Cells(2,11)->Value = "Time";
$xlApp->ActiveSheet->Cells(2,12)->Value = "Finish Inspect(Time)";
$xlApp->ActiveSheet->Cells(2,13)->Value = "Plan";
$xlApp->ActiveSheet->Cells(2,14)->Value = "Actual";
$xlApp->ActiveSheet->Cells(2,15)->Value = "Time(Actual)";
$xlApp->ActiveSheet->Cells(2,16)->Value = "TransportTation";
$xlApp->ActiveSheet->Cells(2,17)->Value = "Remark";
//***********//
$intRows = 3;
while($objResult = mysql_fetch_array($objQuery))
{
//*** Detail ***//
$xlApp->ActiveSheet->Cells($intRows,1)->Value = $objResult["Name_Company"]; //Client
$xlApp->ActiveSheet->Cells($intRows,2)->Value = $objResult["Invoice"]; // Invoice
$xlApp->ActiveSheet->Cells($intRows,3)->Value = $objResult["Name"]; // FWG Incharge
if($objResult["G_W"]==""){ // G_W == NULL
$xlApp->ActiveSheet->Cells($intRows,4)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,4)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,4)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,4)->Value = $objResult["G_W"]; // G/W
$xlApp->ActiveSheet->Cells($intRows,4)->HorizontalAlignment = -4108;
}
if($objResult["M3"]==""){ // M3 == NULL
$xlApp->ActiveSheet->Cells($intRows,5)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,5)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,5)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,5)->Value = $objResult["M3"]; // M3
$xlApp->ActiveSheet->Cells($intRows,5)->HorizontalAlignment = -4108;
}
if($objResult["C_20"]==""){ // C_20 == NULL
$xlApp->ActiveSheet->Cells($intRows,6)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,6)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,6)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,6)->Value = $objResult["C_20"]; // 20
$xlApp->ActiveSheet->Cells($intRows,6)->HorizontalAlignment = -4108;
}
if($objResult["C_40"]==""){ // C_40 == NULL
$xlApp->ActiveSheet->Cells($intRows,7)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,7)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,7)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,7)->Value = $objResult["C_40"]; // 40
$xlApp->ActiveSheet->Cells($intRows,7)->HorizontalAlignment = -4108;
}
$xlApp->ActiveSheet->Cells($intRows,8)->Value = $objResult["N_Shipping"]; // Shipping
$xlApp->ActiveSheet->Cells($intRows,9)->Value = $objResult["ETA"]; // ETA
$xlApp->ActiveSheet->Cells($intRows,9)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,10)->Value = $objResult["Port"]; // Port
$xlApp->ActiveSheet->Cells($intRows,10)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,11)->Value = $objResult["Time"]; // Time
$xlApp->ActiveSheet->Cells($intRows,11)->HorizontalAlignment = -4108;
if($objResult["F_Inspect"]==""){ // Finish Inspect(Time) == NULL
$xlApp->ActiveSheet->Cells($intRows,12)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,12)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,12)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,12)->Value = $objResult["F_Inspect"]; // Finish Inspect(Time)
$xlApp->ActiveSheet->Cells($intRows,12)->HorizontalAlignment = -4108;
}
$xlApp->ActiveSheet->Cells($intRows,13)->Value = $objResult["Plan"]; // Plan
$xlApp->ActiveSheet->Cells($intRows,13)->HorizontalAlignment = -4108;
if($objResult["W_Actual"]==""){ // Actual == NULL
$xlApp->ActiveSheet->Cells($intRows,14)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,14)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,14)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,14)->Value = $objResult["W_Actual"]; // Actual
$xlApp->ActiveSheet->Cells($intRows,14)->HorizontalAlignment = -4108;
}
if($objResult["T_Actual"]==""){ // Time Actual == NULL
$xlApp->ActiveSheet->Cells($intRows,15)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,15)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,15)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,15)->Value = $objResult["T_Actual"]; // Time Actual
$xlApp->ActiveSheet->Cells($intRows,15)->HorizontalAlignment = -4108;
}
if($objResult["Transport"]==""){ // Transport == NULL
$xlApp->ActiveSheet->Cells($intRows,16)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,16)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,16)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,16)->Value = $objResult["Transport"]; // Transport
$xlApp->ActiveSheet->Cells($intRows,16)->HorizontalAlignment = -4108;
}
if($objResult["Remark"]==""){ // Remark == NULL
$xlApp->ActiveSheet->Cells($intRows,17)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,17)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,17)->Value = $objResult["Remark"]; // Remark
}
$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;
}
?>
<a href="myfile.xls"><img src="Image/btn/excel.PNG" width="43" border="0" /></a>
</td>
</tr>
</table>
</table>
<?php
//Report Scheduledelivery Cs-Export
}elseif($Id_Dept==2){
?>
<table align="center" border="1" cellpadding="0" cellspacing="0" width="1250">
<tr>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Client Name</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>CS-Pic</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Destination Port</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Port</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>20</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>40</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>BKK</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>LCB</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>DOM</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Loading</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Time</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>T/S<br />Result</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>T/S<br />Sub</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Actual<br />Loading</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Closing Date</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Closing Time</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Remark</b></font>
</td>
</tr>
<?php
$Id_Dept=$_REQUEST["id_dept"];
$Schedule_Date=$_REQUEST["schedule_date"];
include "connect.php";
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM schedule_ex
LEFT JOIN employee ON (schedule_ex.ID=employee.ID)
LEFT JOIN company ON (schedule_ex.Id_Company=company.Id_Company)
WHERE schedule_ex.Schedule_Date='$Schedule_Date'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Result=mysql_num_rows($objQuery);
if($Result==0){
?>
<tr>
<td align="center" colspan="18">
<font face="sans-serif" size="2" color="#FF0000">
<?php
echo "NoData";
?>
</font>
</td>
</tr>
<?php
}else{
while($objResult = mysql_fetch_array($objQuery)){
$Name_Company=$objResult["Name_Company"];
$Name_Emp=$objResult["Name"];
$Destination=$objResult["D_Port"];
$Port=$objResult["Port"];
$C20=$objResult["C_20"];
$C40=$objResult["C_40"];
$BKK=$objResult["BKK"];
$LCB=$objResult["LCB"];
$DOM=$objResult["DOM"];
$Loading=$objResult["Loading"];
$Time=$objResult["Time"];
$Transport=$objResult["Transport"];
$TS_Result=$objResult["TS_Result"];
$A_Actual=$objResult["A_Actual"];
$C_date=$objResult["C_date"];
$C_time=$objResult["C_time"];
$Remark=$objResult["Remark"];
$i++;
if($i%2==0)
{
$bg = "#FFFFFF";
}else{
$bg = "#CCCCCC";
}
?>
<tr>
<td align="left" width="150" bgcolor="<?=$bg;?>">
<?php
if($Name_Company==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Name_Company</font>";
}
?>
</td>
<td align="left" width="100" bgcolor="<?=$bg;?>">
<?php
if($Name_Emp==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Name_Emp</font>";
}
?>
</td>
<td align="left" width="30" bgcolor="<?=$bg;?>">
<?php
if($Destination=="0"){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$Destination</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($Port==""){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$Port</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($C20==""){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$C20</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($C40==""){
echo "<font face=\"sans-serif\" size=\"2\" color=\"red\">-</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$C40</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($BKK==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$BKK</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($LCB==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$LCB</font>";
}
?>
</td>
<td align="center" width="30" bgcolor="<?=$bg;?>">
<?php
if($DOM==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$DOM</font>";
}
?>
</td>
<td align="center" width="50" bgcolor="<?=$bg;?>">
<?php
if($Loading==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Loading</font>";
}
?>
</td>
<td align="center" width="100" bgcolor="<?=$bg;?>">
<?php
if($Time==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$T_time</font>";
}
?>
</td>
<td align="center" width="50" bgcolor="<?=$bg;?>">
<?php
if($TS_Result==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$W_Actual</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($Transport==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";}else{
echo "<font face=\"sans-serif\" size=\"1\">$Transport</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($A_Actual==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$T_Actual</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($C_date==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$C_date</font>";
}
?>
</td>
<td align="center" width="70" bgcolor="<?=$bg;?>">
<?php
if($C_time==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$C_time</font>";
}
?>
</td>
<td align="left" width="150" bgcolor="<?=$bg;?>">
<?php
if($Remark==""){
echo "<font face=\"sans-serif\" size=\"1\" color=\"red\">NoData</font>";
}else{
echo "<font face=\"sans-serif\" size=\"1\">$Remark</font>";
}
?>
</td>
</tr>
<?php
}
}
?>
<tr>
<td align="center" colspan="4" bgcolor="#B0E2FF">
<font face="sans-serif" size="2"><b>Total</b></font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(C_20) FROM schedule_ex WHERE Schedule_Date='$Shedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(C_20)'];
?>
<font face="sans-serif" size="1">
<?php
echo $rs;
}
?>
</font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(C_40) FROM schedule_ex WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(C_40)'];
?>
<font face="sans-serif" size="1">
<?php
echo $rs;
}
?>
</font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(BKK) FROM schedule_ex WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(BKK)'];
?>
<font face="sans-serif" size="1">
<?php
echo $rs;
}
?>
</font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(LCB) FROM schedule_ex WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(LCB)'];
?>
<font face="sans-serif" size="1">
<?php
echo $rs;
}
?>
</font>
</td>
<td align="center" bgcolor="#B0E2FF">
<?php
$query = "SELECT Schedule_Date, SUM(DOM) FROM schedule_ex WHERE Schedule_Date='$Schedule_Date' GROUP BY Schedule_Date";
$result = mysql_query($query) or die(mysql_error());
// Print out result
while($row = mysql_fetch_array($result)){
$rs=$row['SUM(DOM)'];
?>
<font face="sans-serif" size="1">
<?php
echo $rs;
}
?>
</font>
</td>
<td align="center" colspan="10" bgcolor="#B0E2FF"></td>
</tr>
<table width="1250" border="0" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
<!--Print Preview-->
<td width="33">
<img src="Image/btn/print03.gif" border="0" width="33" height="34" id="btnPrint" onClick="JavaScript:window.print();">
</td>
<td width="10"> </td>
<!--Export To Excel File-->
<td width="43">
<?php
include "connect.php";
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM schedule_ex
LEFT JOIN employee ON (schedule_ex.ID=employee.ID)
LEFT JOIN company ON (schedule_ex.Id_Company=company.Id_Company)
WHERE schedule_ex.Schedule_Date='$Schedule_Date'";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
//*** Get Document Path ***//
$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/sankyu/
//*** Excel Document Root ***//
$strFileName = "myfile.xls";
//*** Connect to Excel.Application ***//
$xlApp = new COM("Excel.Application");
$xlBook = $xlApp->Workbooks->Add();
//*** Create Sheet 1 ***//
$xlBook->Worksheets(1)->Name = "Schedule$Schedule_Date";
$xlBook->Worksheets(1)->Select;
//*** Title ***//
$xlApp->ActiveSheet->Range("A1:Q1")->MergeCells = True;
$xlApp->ActiveSheet->Range("A1:Q1")->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Range("A1:Q1")->Font->Bold = True;
$xlApp->ActiveSheet->Range("A1:Q1")->Font->Size = 20;
$xlApp->ActiveSheet->Cells(1,1)->Value = "Morning Meeting Report";
//*** Aligment Center ***//
$xlApp->ActiveSheet->Range("A2:Q2")->HorizontalAlignment = -4108;
//*** Width Cell Excel File ***//
$xlApp->ActiveSheet->Range("A2:A2")->ColumnWidth = 40.0;
$xlApp->ActiveSheet->Range("B2:B2")->ColumnWidth = 25.0;
$xlApp->ActiveSheet->Range("C2:C2")->ColumnWidth = 30.0;
$xlApp->ActiveSheet->Range("D2:D2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("E2:E2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("F2:F2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("G2:G2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("H2:H2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("I2:I2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("J2:J2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("K2:K2")->ColumnWidth = 10.0;
$xlApp->ActiveSheet->Range("L2:L2")->ColumnWidth = 18.0;
$xlApp->ActiveSheet->Range("M2:M2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("N2:N2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("O2:O2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("P2:P2")->ColumnWidth = 15.0;
$xlApp->ActiveSheet->Range("Q2:Q2")->ColumnWidth = 20.0;
//*** Header ***//
$xlApp->ActiveSheet->Cells(2,1)->Value = "Client Name";
$xlApp->ActiveSheet->Cells(2,2)->Value = "Cs-Pic";
$xlApp->ActiveSheet->Cells(2,3)->Value = "Destinatoin";
$xlApp->ActiveSheet->Cells(2,4)->Value = "Port";
$xlApp->ActiveSheet->Cells(2,5)->Value = "20";
$xlApp->ActiveSheet->Cells(2,6)->Value = "40";
$xlApp->ActiveSheet->Cells(2,7)->Value = "BKK";
$xlApp->ActiveSheet->Cells(2,8)->Value = "LCB";
$xlApp->ActiveSheet->Cells(2,9)->Value = "DOM";
$xlApp->ActiveSheet->Cells(2,10)->Value = "Loading";
$xlApp->ActiveSheet->Cells(2,11)->Value = "Time";
$xlApp->ActiveSheet->Cells(2,12)->Value = "T/S Result";
$xlApp->ActiveSheet->Cells(2,13)->Value = "T/S Sub";
$xlApp->ActiveSheet->Cells(2,14)->Value = "Actual Loading";
$xlApp->ActiveSheet->Cells(2,15)->Value = "Closing Date";
$xlApp->ActiveSheet->Cells(2,16)->Value = "Closing Time";
$xlApp->ActiveSheet->Cells(2,17)->Value = "Remark";
//***********//
$intRows = 3;
while($objResult = mysql_fetch_array($objQuery))
{
//*** Detail ***//
$xlApp->ActiveSheet->Cells($intRows,1)->Value = $objResult["Name_Company"]; // Client Name
$xlApp->ActiveSheet->Cells($intRows,2)->Value = $objResult["Name"]; // Pic-CS
$xlApp->ActiveSheet->Cells($intRows,3)->Value = $objResult["D_Port"]; // Destination Port
$xlApp->ActiveSheet->Cells($intRows,4)->Value = $objResult["Port"]; // Port
$xlApp->ActiveSheet->Cells($intRows,4)->HorizontalAlignment = -4108;
if($objResult["C_20"]==""){// C_20 == NULL
$xlApp->ActiveSheet->Cells($intRows,5)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,5)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,5)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,5)->Value = $objResult["C_20"]; // 20
$xlApp->ActiveSheet->Cells($intRows,5)->HorizontalAlignment = -4108;
}
if($objResult["C_40"]==""){// C_40 == NULL
$xlApp->ActiveSheet->Cells($intRows,6)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,6)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,6)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,6)->Value = $objResult["C_40"]; // 40
$xlApp->ActiveSheet->Cells($intRows,6)->HorizontalAlignment = -4108;
}
if($objResult["BKK"]==""){// BKK == NULL
$xlApp->ActiveSheet->Cells($intRows,7)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,7)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,7)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,7)->Value = $objResult["BKK"]; // BKK
$xlApp->ActiveSheet->Cells($intRows,7)->HorizontalAlignment = -4108;
}
if($objResult["LCB"]==""){// LCB == NULL
$xlApp->ActiveSheet->Cells($intRows,8)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,8)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,8)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,8)->Value = $objResult["LCB"]; // LCB
$xlApp->ActiveSheet->Cells($intRows,8)->HorizontalAlignment = -4108;
}
if($objResult["DOM"]==""){// DOM == NULL
$xlApp->ActiveSheet->Cells($intRows,9)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,9)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,9)->Value = "-";
}else{
$xlApp->ActiveSheet->Cells($intRows,9)->Value = $objResult["DOM"]; // DOM
$xlApp->ActiveSheet->Cells($intRows,9)->HorizontalAlignment = -4108;
}
$xlApp->ActiveSheet->Cells($intRows,10)->Value = $objResult["Plan"]; // Loading
$xlApp->ActiveSheet->Cells($intRows,10)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,11)->Value = $objResult["Time"]; // Time
$xlApp->ActiveSheet->Cells($intRows,11)->HorizontalAlignment = -4108;
if($objResult["TS_Result"]==""){// T/S Result == NULL
$xlApp->ActiveSheet->Cells($intRows,12)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,12)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,12)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,12)->Value = $objResult["TS_Result"]; // T/S Result
$xlApp->ActiveSheet->Cells($intRows,12)->HorizontalAlignment = -4108;
}
$xlApp->ActiveSheet->Cells($intRows,13)->Value = $objResult["Transport"]; // T/S Sup
$xlApp->ActiveSheet->Cells($intRows,13)->HorizontalAlignment = -4108;
if($objResult["A_Actual"]==""){// Actual Loading == NULL
$xlApp->ActiveSheet->Cells($intRows,14)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,14)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,14)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,14)->Value = $objResult["A_Actual"]; // Actual Loading
$xlApp->ActiveSheet->Cells($intRows,14)->HorizontalAlignment = -4108;
}
$xlApp->ActiveSheet->Cells($intRows,15)->Value = $objResult["C_date"]; // Closing Date
$xlApp->ActiveSheet->Cells($intRows,15)->HorizontalAlignment = -4108;
$xlApp->ActiveSheet->Cells($intRows,16)->Value = $objResult["C_time"]; // Closing Time
$xlApp->ActiveSheet->Cells($intRows,16)->HorizontalAlignment = -4108;
if($objResult["Remark"]==""){ // Remark == NULL
$xlApp->ActiveSheet->Cells($intRows,17)->Font->ColorIndex = 3;
$xlApp->ActiveSheet->Cells($intRows,17)->Value = "NoData";
}else{
$xlApp->ActiveSheet->Cells($intRows,17)->Value = $objResult["Remark"]; // Remark
}
$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;
}
?>
<a href="<?=$strFileName?>"><img src="Image/btn/excel.PNG" width="43" border="0" /></a>
</td>
</tr>
</table>
</table>
</table>
<?php
}
}
?>
</body>
</html>
ตาม Code เลยนะครับ Code นี้ ทำงานได้ ครับ (บน localhost ครับ) แต่พอ ผม อัพขึ้น IIS6 ใน เครื่อง Windows Server 2003 ที่ได้ทำการ Setting รัน ภาษา PHP ไว้ แล้ว นั้น หน้า อื่นๆ หรือ ไฟล์ สคริป อื่นๆ สามารถ ทำงาน ได้ ปกติ ครับ
แต่พอ จะให้ ออก ราย เอกสาร Excel กลับ เกิด Error ครับ
ผมได้ทำงานการ หา วิธีแก้ แบบ ต่างๆ แล้ว นะครับ ทั้งใน google และ ใน thaicreate ก็ ยังไม่สามารถแก้ได้ครับ
ก็เลยมาตั้ง กะทู้ถามพี่ๆครับ
สิ่งที่อยากจะถามคือ
1.ผมไม่สามารถรัน โค้ด ออก รายงาน excel ใน เครื่อง server 2003 ได้ และไม่สามารถ รัน บน appserv ที่เครื่อง Win7 ได้ แต่สามารถรันได้ บน Win xp
2.วิธีแก้ ที่ พี่วิน แนะ นำ ผมได้ทำการแก้้ตาม แล้ว นะครับ วิธี Config phpให้สามารถ รัน Excel Application แต่ก็รันไม่ได้ ครับ ผมก็เลยไปเช็คที่ Eventview ก็เจอ แต่ User : ISUR -machin ครับ ก็เลย อยากจะถาม ว่า ทำไม user ถึงไม่เป็น System ครับ ทั้งๆ ที่ ผม ไม่ได้ add user
ISUR-maching ใน Excel Application เลย มีวิธีแก้ หรือ ไม่ครับ
3.ที่ผมโพสถามนี้ไม่ใช่ไม่ได้อ่านกะทู้เก่าๆ ก่อน นะครับคือ ผม อ่านแล้ว ครับ ลองปรัปๆ เล่น ดูแล้ว ครับ ก็ได้ ปกติ ครับ แต่ฉเพราะ บน localhost นะครับ พออัพขึ้น เครื่อง server หรือ รัน บน appserv ใน win7 ก็รันไม่ได้ ครับ
ปล.รบกวนพี่ๆ ช่วยแนะนำด้วยนะครับ
Tag : PHP, MySQL, JavaScript
|
|
|
|
|
|
Date :
2011-02-10 08:53:28 |
By :
popnakub |
View :
10397 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดู Error Log หน่อยน่ะครับ ปกติถ้าใช้ IIS เป็น Web Server ตัว User จะเป็น IUSR_mac.. ครับ แต่ถ้ากำหนดสิทธิ์ นี่ก็สามารถใช้งานได้เลยน่ะครับ
|
|
|
|
|
Date :
2011-02-10 09:17:17 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เกิด Error Log ตามรูป เลยครับ พี่
รบกวนช่วยชี้แนะด้วยนะครับ
|
|
|
|
|
Date :
2011-02-10 10:00:24 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+1ให้เลยครับพี่วิน
ได้แล้วครับผม
แต่ เอ่ ขอถาม เพิ่ม อีก หน่อย นะครับ พี่
บทความที่พี่ให้มันเป็นของ ASP แต่ทำไม ปรัปใช้ กับ PHP ได้ ครับ สงสัย ครับผม
และขอถามอีกอย่างนะครับผม
ตามรูปนะครับพี่
อยากจะให้ ส่วนท้าย คอลัม ที่ ว่าง อ่า ครับ สามารถ SUM ค่า อัตโนมัติ ครับ
ไม่ทราบว่า พี่ พอจะแนะนำได้ไหม ครับ หรือ มีบทความ พอเป็น ไกด์ลาย ให้ หน่อย ได้ไหมครับ
แต่ยังไงก็ขอบคุณมากๆ นะครับ พี่
|
|
|
|
|
Date :
2011-02-10 14:11:42 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คำถามแรก PHP และ ASP เรียกใช้ COM ตัวเดียวกัน เลยมีปัญหาเดียวกันครับ
คำถามที่สอง จะเขียน SUM เองด้วย PHP แล้ว Input ค่าลง ก็ไม่ยาก หรือจะใช้ สูตรเช่น =SUM(A1:A20) การใช้สูตรวางในตำแหน่งที่ต้องการ
สามารถเขียนออกมาเป็น Excel ได้แล้ว วิธีอื่น ๆ ไม่ยากที่จะพัฒนาต่อไปได้ครับ หรือไม่ลองเขียนเป็นแบบ Template โดยจัดการรูปแบบเอกสารเป็น Template ไว้ อาจจะเขียนสูตรต่าง ๆ ไว้คราบถ้วนแล้ว จากนั้นเพียงใช้ PHP อ่าน Template มาแล้วเขียนข้อความเพิ่มในตำแหน่งที่ต้องการ แล้ว Save เป็นไฟล์ใหม่ วิธีนี้จะสะดวกมาก ๆ ในกรณีที่เอกสารที่เราส่งออกนั้นมีความซับซ้อน และต้องการรายละเอียดอื่น ๆ เช่น การออก Invoice เราอาจจะมีแบบ Form สำหรับการออก Invoice ไว้แล้ว โดยมี Header และ Detail ต่าง ๆ และมีพื้นที่สำหรับ php เขียนข้อความลงไป วิธีนี้ช่วยให้สามารถจัดการไฟล์ excel ได้อย่างดีเยี่ยมเลยทีเดียวครับ
Go to : PHP Excel Open Document (Excel Application)
Cheer !
|
|
|
|
|
Date :
2011-02-10 14:26:46 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะลองทำตามที่พี่แนะนำ ดูครับผม
ขอบคุณมากครับพี่ที่ช่วยแนะนำครับ
|
|
|
|
|
Date :
2011-02-10 18:03:35 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|