0

I am new to php. I tried to importing excel file to mysql, it works well. but i only import excel file from wamp/www/samp.xls. I need to import excel file from different location like D: or E:. How can obtain that, give me a solution. My code for location is wamp/www/samp.xls is:

<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

0

使用基本形式

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

并在 php 端按如下方式处理表单

$excel->read($_FILES['excel']['tmp_name']);
于 2013-07-16T04:48:40.543 回答