|
|
|
ถามเรื่องการเขียนโปรแกรมติดต่อ excel หน่อยครับ ผมต้องการเขียนโค้ดในการจัดการไฟล์ excel |
|
|
|
|
|
|
|
ปกติแล้วไม่ค่อยมีใครใช้ format ของ excel (.xls) ในการ import น่ะครับ ส่วนมากจะ convert เป็น .csv แล้วค่อย import ครับ
Code (Read CSV)
<html>
<head>
<title>ThaiCreate.Com PHP & Read CSV</title>
</head>
<body>
<?
$objCSV = fopen("customer.csv", "r");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
while (($objArr = fgetcsv($objCSV, 1000, ",")) !== FALSE) {
?>
<tr>
<td><div align="center"><?=$objArr[0];?></div></td>
<td><?=$objArr[1];?></td>
<td><?=$objArr[2];?></td>
<td><div align="center"><?=$objArr[3];?></div></td>
<td align="right"><?=$objArr[4];?></td>
<td align="right"><?=$objArr[5];?></td>
</tr>
<?
}
fclose($objCSV);
?>
</table>
</body>
</html>
Code (CSV to MySQL)
<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>
|
|
|
|
|
Date :
2009-11-01 19:50:37 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|