2

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);
}

私はそれが明らかだと思います、前もって感謝します。

4

2 に答える 2

1

試す

$sql = "INSERT INTO data (rep_num, description, repair_type) VALUES ('$rep_num','$description','$repair_type')";

フィールド名が正しいことを確認してください。

于 2012-05-08T21:37:38.490 に答える
0

mysql_query メソッドの結果を次のように確認します。

$result = mysql_query($sql);
if (!$result) {
    die('Invalid query: ' . mysql_error());
}

php.net - mysql クエリの説明

于 2012-05-08T21:41:37.013 に答える