繁体   English   中英

从不同位置导入excel文件并将其保存到php中的mysql

[英]importing excel file from different location and save it to mysql in php

我是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>

使用基本形式

<form enctype='multipart/form-data'><input type="file" name="excel" /> <input type="submit" value="upload" /></form>

并在php端处理如下形式

$excel->read($_FILES['excel']['tmp_name']);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM