|
|
|
สอบถามเรื่องการ Import Excel to MySQL Database ได้นำตัวอย่างนี้มาแก้ไข แต่ข้อมูลที่ลงไม่ครบค่ะ |
|
|
|
|
|
|
|
สอบถามเรื่องการ Import Excel to MySQL Database ค่ะ
ทดลองเขียน code แบบตัวอย่าง
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP(COM) Excel.Application Tutorial</title>
</head>
<body>
<?php
//*** 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);
//$xlBook = $xlApp->Workbooks->Open(realpath($OpenFile));
$xlSheet1 = $xlBook->Worksheets(1);
//*** Insert to MySQL Database ***//
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
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>
แต่พอขอมูลลง Database กลับมีแค่ 4 id ทั้งที่ข้อมูลที่จะลงมีมากกว่านั้นค่ะ
อันนี้เราจะต้องแก้ไขยังไงค่ะ รบกวนด้วยนะคะ ^__^
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2015-10-21 10:13:42 |
By :
chero |
View :
1069 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for($i=2;$i<=5;$i++){
เลข 2 - 5 มันถูกกำหนดให้อ่านแค่นี้
ให้เปลี่ยน เลข 5 เป็น row สุดท้าย
ส่วนวิธีการ หา row สุดท้าย คงต้อง เสริชหาเอาหน่อยครับ ไม่เคยใช้ com(excel)
ใช้แต่ class PHPExcel
$highestRow = $objWorksheet->getHighestRow();
$highestColumn = $objWorksheet->getHighestColumn();
|
|
|
|
|
Date :
2015-10-21 10:33:06 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แนะนำให้เปลี่ยนไปใช้ตัวนี้ครับ
PHPExcel กับ Reader การอ่านไฟล์ Excel (.xls,.xlsx) และการนำ
|
|
|
|
|
Date :
2015-10-22 09:54:43 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|