|
|
|
ใครรู้ วิธี ดัม ข้อมูลจาก excel ใส่ในฐานข้อมูลมบ้าง |
|
|
|
|
|
|
|
ใช้ Navicat for MySQL ครับ ง่ายดี
|
|
|
|
|
Date :
2011-02-11 08:39:12 |
By :
avsqlz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & CSV To MySQL</title>
</head>
<body>
<?
copy($_FILES["fileCSV"]["tmp_name"],$_FILES["fileCSV"]["name"]); // Copy/Upload CSV
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database"); // Conect to MySQL
$objDB = mysql_select_db("mydatabase");
$objCSV = fopen($_FILES["fileCSV"]["name"], "r");
$strSQL = "INSERT INTO student ";
$strSQL .="(Student_ID,Student_Prefix,Student_Fname,Student_Fname,Student_Status,Student_Dateadd,Project_ID) ";
$strSQL .="VALUES ";
$strSQL .="('".$objArr[0]."','".$objArr[1]."','".$objArr[2]."' ";
$strSQL .=",'".$objArr[3]."','".$objArr[4]."',now(),'0') ";
$objQuery = mysql_query($strSQL);
}
fclose($objCSV);
echo "Upload & Import Done.";
?>
</table>
</body>
</html>
ใช้ไฟล์ excel อัพเลยเปล่า หรื่อ ว่า เป็น .xml
Warning: fgetcsv() expects parameter 1 to be resource, boolean given in C:\AppServ\www\Webbooking\Student\testupdateeexcel.php on line 15
|
|
|
|
|
Date :
2011-02-11 14:58:24 |
By :
ckcr |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|