PHP import Excel to MySQL method _php tips

Source: Internet
Author: User
Tags mysql code php and
Studied a bit ~ method a lot ~ finally decided to import with Excel ~ in the online search a lot of this information, found that the Excel file is saved as a CSV file, and then imported from the CSV file. Here is an example of importing an Excel file directly into MySQL. I spent a night testing, regardless of the introduction of simple traditional will not appear garbled, very useful.
Php-excelreader, download Address: Http://sourceforge.net/projects/phpexcelreader
Description
PHP imports excel into MySQL's test environment: the MySQL database is UTF8 encoded. The import Excel document is XLS format and, after testing, xlsx format [Excel 2007] is OK.
Please replace the data you have configured, such as database configuration. Run http://localost/test.php implementation Import.
Here is the detailed code I posted, where test.php the test files that I wrote, reader.php and oleread.inc files are downloaded from the URLs provided above.
1. PHP to import Excel into MySQL code example test.php
Copy Code code as follows:

< PHP
Require_once ' reader.php '; Excelfile ($filename, $encoding); $data = new Spreadsheet_excel_reader (); Set output Encoding. $data->setoutputencoding (' GBK ');
"Data.xls" refers to an Excel file that you want to import into MySQL
$data->read (' Data.xls ');
@ $db = mysql_connect (' localhost ', ' root ', ' 123456 ') or
Die ("Could not connect to database."); /Connection Database
mysql_query ("Set names ' GBK '")//Output Chinese
mysql_select_db (' mydb '); Select Database
Error_reporting (e_all ^ e_notice);
for ($i = 1; $i <= $data->sheets[0][' numrows '; $i + +) {
The For loop for the following comment prints Excel table data
/*
for ($j = 1; $j < = $data->sheets[0][' numcols ']; $j + +) {
echo "\" ". $data->sheets[0][' cells ' [$i] [$j]." \",";
}
echo "\ n";
*/
The following code inserts the Excel table data "3 fields" into MySQL.
Rewrite the following code, depending on how much of your Excel table field is!
$sql = "INSERT into Test VALUES ('".
$data->sheets[0][' cells ' [$i][1]. "', '".
$data->sheets[0][' cells ' [$i][2]. "', '".
$data->sheets[0][' cells ' [$i][3].
echo $sql. ' < br/> ';
$res = mysql_query ($sql);
}
?>

The above is PHP will excel import MySQL related method Introduction, hope more and need friends to help.
But found his class inside the file a little problem, modified after the normal ~ can go to

Download Phpexcelreader here

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.