|
|
|
upload จาก excel ใส่ใน access ทีละมากๆ พอดีจะ Upload ข้อมูลจาก excel ไปใน access ค่ะ โดยใช้ php |
|
|
|
|
|
|
|
ลองใช้ CSV แทนน่ะครับ จะสามารถอ่านได้ง่ายและเร็วกว่า excel ครับ
|
|
|
|
|
Date :
2009-05-11 20:37:06 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & CSV To MySQL</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database"); // Conect to MySQL
$objDB = mysql_select_db("mydatabase");
$objCSV = fopen("customer.csv", "r");
while (($objArr = fgetcsv($objCSV, 1000, ",")) !== FALSE) {
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .="VALUES ";
$strSQL .="('".$objArr[0]."','".$objArr[1]."','".$objArr[2]."' ";
$strSQL .=",'".$objArr[3]."','".$objArr[4]."','".$objArr[5]."') ";
$objQuery = mysql_query($strSQL);
}
fclose($objCSV);
echo "Import Done.";
?>
</table>
</body>
</html>
Go to : PHP Convert and Import CSV to MySQL Database
|
|
|
|
|
Date :
2011-06-09 21:57:28 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|