|
|
|
นำเข้าข้อมู]ลจากExcel แบบออนไลน์เข้าMysqlทำไง ต้องการที่จะนำเข้าข้อมูลจาก Excel เก็บใว้ใน Mysql แบบออนไลน์จะทำไงคีคะช่วย |
|
|
|
|
|
|
|
แนะนำเปลี่ยนเป็น CSV แทนครับ
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-07-23 09:52:09 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|