0

私はphpが初めてです。Excelファイルをmysqlにインポートしようとしましたが、うまくいきます。しかし、wamp/www/samp.xls から Excel ファイルのみをインポートします。D: や E: などの別の場所から Excel ファイルをインポートする必要があります。どうすればそれを取得できますか、解決策を教えてください。場所の私のコードは wamp/www/samp.xls です:

<html>
  <head>
  <title>Save Excel file details to the database</title>
  </head>
  <body>`enter code here`
    <?php
        include 'db_connection.php';
        include 'reader.php';
        $excel = new Spreadsheet_Excel_Reader();
    ?>
        <table border="1">
        <?php
            $excel->read('samp.xls');
            $x=2;
            while($x<=$excel->sheets[0]['numRows']) {
                $id = isset($excel->sheets[0]['cells'][$x][1]) ? $excel->sheets[0]['cells'][$x][1] : '';
                $name = isset($excel->sheets[0]['cells'][$x][2]) ? $excel->sheets[0]['cells'][$x][2] : '';
               $age = isset($excel->sheets[0]['cells'][$x][1]) ? $excel->sheets[0]['cells'][$x][3] : '';
                $email = isset($excel->sheets[0]['cells'][$x][2]) ? $excel->sheets[0]['cells'][$x][4] : '';
                // Save details
                $sql_insert="INSERT INTO students (sid,name,age,email) VALUES ('$id','$name','$age','$email')";
                $result_insert = mysql_query($sql_insert) or die(mysql_error());
              $x++;
            }
        ?>
    </table>
  </body>
</html>
4

1 に答える 1