|
|
|
PHP Import Excel to Database มันerror อะครับ ช่วยที |
|
|
|
|
|
|
|
นี้ตัว code ครับ
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
$OpenFile = "MyXls/MyCustomer.xls";
//*** Create Exce.Application ***//
$xlApp = new COM("Excel.Application");
$xlBook = $xlApp->Workbooks->Open($strPath."/".$OpenFile);
$xlSheet1 = $xlBook->Worksheets(1);
//*** Insert to MySQL Database ***//
$objConnect = mysql_connect("127.0.0.1","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("maani");
for($i=2;$i<=5;$i++){
If(trim($xlSheet1->Cells->Item($i,1)) != "")
{
$strSQL = "";
$strSQL .= "INSERT INTO customer2 ";
$strSQL .= "(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .= "VALUES ";
$strSQL .= "('".$xlSheet1->Cells->Item($i,1)."','".$xlSheet1->Cells->Item($i,2)."' ";
$strSQL .= ",'".$xlSheet1->Cells->Item($i,3)."','".$xlSheet1->Cells->Item($i,4)."' ";
$strSQL .= ",'".$xlSheet1->Cells->Item($i,5)."','".$xlSheet1->Cells->Item($i,6)."') ";
mysql_query($strSQL);
}
}
//*** Close MySQL ***//
@mysql_close($objConnect);
//*** Close & Quit ***//
$xlApp->Application->Quit();
$xlApp = null;
$xlBook = null;
$xlSheet1 = null;
?>
Data Import/Inserted.
</body>
</html>
ขึ้นerror ว่าอย่างนี้อะครับ
Fatal error: Uncaught exception 'com_exception' with message '<b>Source:</b> Microsoft Office Excel<br/><b>Description:</b> Microsoft Office Excel ไม่สามารถเข้าถึงแฟ้ม 'C:\AppServ\www\New\project\MyXls\MyCustomer.xls' มีสาเหตุที่เป็นไปได้หลายประการ ได้แก่ • ไม่มีชื่อแฟ้มหรือชื่อเส้นทางนั้น • แฟ้มนั้นถูกใช้โดยโปรแกรมประยุกต์อื่น • สมุดงานที่คุณกำลังพยายามบันทึกมีชื่อเดียวกับสมุดงานที่เปิดอยู่ในปัจจุบัน' in C:\AppServ\www\New\project\phpImportExcelToDatabase.php:12 Stack trace: #0 C:\AppServ\www\New\project\phpImportExcelToDatabase.php(12): variant->Open('C:\AppServ\www\...') #1 {main} thrown in C:\AppServ\www\New\project\phpImportExcelToDatabase.php on line 12
ช่วยหน่อยนะครับ
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-26 00:28:38 |
By :
wongrun |
View :
1083 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โปรแกรมมี Error แจ้งไว้แล้วน่ะครับ ลองแก้ไขและตรวจสอบดูครับ
|
|
|
|
|
Date :
2010-02-26 08:42:23 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2010-02-26 13:37:00 |
By :
wongrun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|