在mysql db表中插入变量

laawzig2  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(540)

我将遵循以下教程:https://itsolutionstuff.com/post/php-import-excel-file-into-mysql-database-tutorialexample.html
它使用此库:https://github.com/nuovo/spreadsheet-reader
大部分代码似乎都能工作。我已经创建了一个页面,您可以选择一个文件从您的计算机和“上传”它。然后我们在页面上的文件中创建一个数据表。
最后也是最重要的功能是:将数据导入本地mysql数据库。
我的连接如下:

<?php
    $servername = "localhost";
    $dbname = "analyse";
    $password = "";
    $username = "root";
    $mysqli = new mysqli("localhost", "root", "", "analyse");
?>

我使用的是没有密码的根帐户。这个数据库叫做“分析”。我们要将数据导入的表称为“test”。我尝试了另一个帐户,我创建了用户名为“import”和密码为“123”,它也没有给出任何结果。
我的php脚本的其余部分如下所示:

<?php
require('library/php-excel-reader/excel_reader2.php');
require('library/SpreadsheetReader.php');
require('db_config.php');

if(isset($_POST['Submit'])){
  $ok = 1;
  $mimes = ['application/vnd.ms-excel','text/xls','text/xlsx','application/vnd.oasis.opendocument.spreadsheet'];
  if($ok = 1); {
    $uploadFilePath = 'uploads/'.basename($_FILES['file']['name']);
    move_uploaded_file($_FILES['file']['tmp_name'], $uploadFilePath);
    $Reader = new SpreadsheetReader($uploadFilePath);
    $totalSheet = count($Reader->sheets());
    echo "Du har ".$totalSheet." regneark".

    $html="<table border='1'>";
    $html.="<tr>
    <th>Account Number</th>
    <th>forstelisten</th>
    <th>andrelisten</th>
    <th>Account</th>
    </tr>";

    /* For Loop for all sheets */
    for($i=0;$i<$totalSheet;$i++){
      $Reader->ChangeSheet($i);
      foreach ($Reader as $Row)
      {
        $html.="<tr>";
        $accountnumber = isset($Row[0]) ? $Row[0] : '';
        $forstelisten = isset($Row[1]) ? $Row[1] : '';
        $andrelisten = isset($Row[2]) ? $Row[2] : '';
        $account = isset($Row[3]) ? $Row[3] : '';
        $html.="<td>".$accountnumber."</td>";
        $html.="<td>".$forstelisten."</td>";
        $html.="<td>".$andrelisten."</td>";
        $html.="<td>".$account."</td>";
        $html.="</tr>";

        $query = "
        INSERT INTO test(Account Number, forstelisten, andrelisten, Account) 
        VALUES('".$accountnumber."','".$forstelisten."','".$andrelisten."','".$account."')";
        $mysqli->query($query);
       }
    }
    $html.="</table>";
    echo $html;
    echo "<br />Data lagt inn i databasen.";
  }
}
?>

在运行这个之后,我得到了表和表计数以及最后的消息,但是mysql数据库中没有显示任何内容,也没有错误消息。
我们试图导入(测试)的表有四个冒号:account number、forstelisten、andrelease、account。它们都是int。我们尝试导入的xlsx文件称为test。它包含四个冒号和三行。所有这些单元格中只有数字(1到300之间的数字不同,没有小数)。
mysql数据库正在wamp服务器上运行。php版本是7.1.9。mysql版本是5.7.19。
请询问您是否需要更多信息,并感谢您的帮助。
编辑:
现在可以了!谢谢大家。
工作代码如下所示:

<?php
require('library/php-excel-reader/excel_reader2.php');
require('library/SpreadsheetReader.php');
require('db_config.php');

if(isset($_POST['Submit'])){
  $ok = 1;
  $mimes = ['application/vnd.ms-excel','text/xls','text/xlsx','application/vnd.oasis.opendocument.spreadsheet'];
  if($ok == 1); {
    $uploadFilePath = 'uploads/'.basename($_FILES['file']['name']);
    move_uploaded_file($_FILES['file']['tmp_name'], $uploadFilePath);
    $Reader = new SpreadsheetReader($uploadFilePath);
    $totalSheet = count($Reader->sheets());
    echo "Du har ".$totalSheet." regneark".

    $html="<table border='1'>";
    $html.="<tr>
    <th>Account Number</th>
    <th>forstelisten</th>
    <th>andrelisten</th>
    <th>Account</th>
    </tr>";

    /* For Loop for all sheets */
    for($i=0;$i<$totalSheet;$i++){
      $Reader->ChangeSheet($i);
      foreach ($Reader as $Row)
      {
        $html.="<tr>";
        $accountnumber = isset($Row[0]) ? $Row[0] : '';
        $forstelisten = isset($Row[1]) ? $Row[1] : '';
        $andrelisten = isset($Row[2]) ? $Row[2] : '';
        $account = isset($Row[3]) ? $Row[3] : '';
        $html.="<td>".$accountnumber."</td>";
        $html.="<td>".$forstelisten."</td>";
        $html.="<td>".$andrelisten."</td>";
        $html.="<td>".$account."</td>";
        $html.="</tr>";

        $query = "
    INSERT INTO `analyse`.`test`(`Account Number`, `forstelisten`, `andrelisten`, `Account`) 
    VALUES('$accountnumber','$forstelisten','$andrelisten','$account')";
        $mysqli->query($query);
       }
    }
    $html.="</table>";
    echo $html;
    echo "<br />Data lagt inn i databasen.";
  }//else { 
    //die("<br/>Sorry, File type is not allowed. Only Excel file."); 
  //}
}
?>
mnemlml8

mnemlml81#

我认为您的列名(帐号)是两个字,因此请尝试在不一致的字段名周围使用反引号,如下面所示,并将您的条件($ok=1)更改为($ok==1)

$query = "INSERT INTO test(`Account Number`, forstelisten, andrelisten, Account) VALUES ('".$accountnumber."','".$forstelisten."','".$andrelisten."','".$account."')";

相关问题