|
|
|
การ วนลูป excel เข้าไปฐานข้อมูล mysql โดยไม่จำกัด บรรทัดของไฟล์ excel ที่มี |
|
|
|
|
|
|
|
เจ้า code ที่ได้ศึกษาวิธี import excel เข้ามา mysql แต่หากต้องการไม่ฟิกเรคคอร์ด ต้องกำหนดวนลูปอย่างไรครับ
ผู้รู้ช่วนสอนด้วยครับ ขอบพระคุณอย่างสูงครับ
Code (PHP)
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;
?>
Code
Data Import/Inserted.
Tag : PHP
|
|
|
|
|
|
Date :
2013-03-10 17:28:44 |
By :
B4571193 |
View :
898 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|