我正在使用来自http://sourceforge.net/projects/phpexcelreader/的 phpexcelreaderclass ,我一直在关注这个 tut:http ://rackerhacker.com/2008/11/07/importing-excel-files-into- mysql-with-php/
现在一切似乎进展顺利,但似乎没有向数据库中插入任何内容?它向我回显了工作表中的数据,所以我猜它会读取它并将其显示回来,但它只是没有写入 MySQL 数据库。
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
require_once 'Excel/reader.php';
$data = new Spreadsheet_Excel_Reader();
$data->setOutputEncoding('CP1251');
$data->read('Export.xls');
$conn = mysql_connect("localhost","root","");
mysql_select_db("excel",$conn);
for ($x = 2; $x <= count($data->sheets[1]["cells"]); $x++) {
$rep_num = $data->sheets[1]["cells"][$x][1];
$description = $data->sheets[1]["cells"][$x][2];
$repair_type = $data->sheets[1]["cells"][$x][3];
$sql = "INSERT INTO data (`rep_num`,`description`,`repair_type`)
VALUES ('$rep_num',$description,'$repair_type')";
echo $sql."\n";
mysql_query($sql);
}
我想这很明显,我敢肯定,在此先感谢。