|
|
|
ช่วยดู code ให้หน่อยค่ะว่า Error ตรงไหนคะ Excel ... Fatal error: Uncaught exception 'com_exception' with message '<b>Source:</b> Microsoft Office Excel<br/><b>Description |
|
|
|
|
|
|
|
ExcelForm.php
Code (PHP)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<body>
<form method="post" action="import2.php" enctype="multipart/form-data">
Excel file : <input type="file" name="excelfile" id="excelfile" size="50">
<br><input type="submit" value="Up File">
</form>
</body>
</html>
import2.php
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP(COM) Excel.Application Tutorial</title>
</head>
<body>
<?
//*** Get Document Path ***//
$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp
$excel_file=$timen.$HTTP_POST_FILES['excelfile']['name'];
$dot =strpos($excel_file,'.');
$newexcelfiles = substr($excel_file,0,$dot);
$OpenFile = "Excel/Nov/$excel_file.xls";
//*** Create Exce.Application ***//
$xlApp = new COM("Excel.Application");
$xlBook = $xlApp->Workbooks->Open($strPath."/".$OpenFile);
$xlBook = $xlApp->Workbooks->Open(realpath($OpenFile));
$xlSheet1 = $xlBook->Worksheets(1);
$xlSheet1->Name = "My Customer";
//*** Insert to MySQL Database ***//
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("sahapoint");
mysql_query('set charset tis620 ') or die (mysql_error());
$i=2;
//for($i=2;$i<=5;$i++){
while(trim($xlSheet1->Cells->Item($i,1)) != "" )
{
$strSQL = "CREATE TABLE if not exists a$newexcelfiles(AR_CODE varchar(15) NOT NULL,GOODS_CODE varchar(15),TRD_QTY int)";
mysql_query($strSQL,$objConnect) or die(mysql_error());
$strSQL = "INSERT INTO a$newexcelfiles ";
$strSQL .= "(AR_CODE,GOODS_CODE,TRD_QTY) ";
$strSQL .= "VALUES ";
$strSQL .= "('".$xlSheet1->Cells->Item($i,3)."','".$xlSheet1->Cells->Item($i,5)."' ";
//$strSQL .= ",'".$xlSheet1->Cells->Item($i,3)."','".$xlSheet1->Cells->Item($i,4)."' ";
$strSQL .= ",'".$xlSheet1->Cells->Item($i,9)."')";
//$strSQL .= ",'".$xlSheet1->Cells->Item($i,5)."','".$xlSheet1->Cells->Item($i,6)."')";
mysql_query($strSQL,$objConnect);
$i++;
}//end if
//}//end for
//*** Close MySQL ***//
mysql_close($objConnect);
//*** Close & Quit ***//
$xlApp->Quit();
//$xlApp->Application->Quit();
$xlApp = null;
$xlBook = null;
$xlSheet1 = null;
?>
Data Import XLS2/Inserted.
</body>
</html>
มันขึ้น Error ว่า
Fatal error: Uncaught exception 'com_exception' with message '<b>Source:</b> Microsoft Office Excel<br/><b>Description:</b> ไม่พบ 'C:\AppServ\www\sahaPoint/Excel/Nov/001052552.xls.xls' โปรดตรวจการสะกดของชื่อแฟ้มและตรวจสอบตำแหน่งที่ตั้งของแฟ้มให้ถูกต้อง ถ้าคุณกำลังพยายามเปิดแฟ้มจากรายการของแฟ้มที่เปิดใช้เมื่อเร็วๆ นี้ โปรดตรวจสอบให้แน่ใจว่าแฟ้มไม่ได้ถูกเปลี่ยนชื่อ ย้าย หรือถูกลบ' in C:\AppServ\www\sahaPoint\import2.php:17 Stack trace: #0 C:\AppServ\www\sahaPoint\import2.php(17): variant->Open('C:\AppServ\www\...') #1 {main} thrown in C:\AppServ\www\sahaPoint\import2.php on line 17
เปิดไรขึ้นต้องแก้ตรงไหน
Tag : - - - -
|
|
|
|
|
|
Date :
2010-01-12 15:30:22 |
By :
tukata |
View :
1206 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|