dragonmeng2002 2017-11-01 19:55
浏览 52
已采纳

将csv的值存储在表数据库的不同列中

I need to do a form that stores values of a csv in a table database, the form I just did works but I need to store the values in a specific order. This is the csv im working with csv

I need to store the values in color in different colums of a table database like this csv

But when I run the form the values store like this

example

this is my form

 <div class="container">
<?php
if(isset($_POST['uploadBtn'])){
    $fileName=$_FILES['myFile']['name'];
    $fileTmpName=$_FILES['myFile']['tmp_name'];

    $fileExtension=pathinfo($fileName,PATHINFO_EXTENSION);

    $allowedType = array('csv');
    if(!in_array($fileExtension,$allowedType)){?>

        <div class="alert alert-danger">
            INVALID FILE
        </div>
    <?php }else{




        $handle = fopen($fileTmpName, 'r');
$k = 0;
$energies = [];
while (($myData = fgetcsv($handle,1000,',')) !== FALSE) {
  $k++;
  if ( $k > 1 ) {
        $energies[] = $myData[3];
     }
}


list($e1, $e2, $e3) = $energies;
$query = "INSERT INTO metlab.table (energy1, energy2, energy3) VALUES ($e1, $e2, $e3)";

$run = mysql_query($query);




        if(!$run){
            die("error in uploading file".mysql_error());
        }else{ ?>
                <div class="alert alert-success">
                    SUCCESS
                </div>
    <?php   }
    }
}
    ?>

<form action="" method="post" enctype="multipart/form-data">
    <h3 class="text-center">
        RESULTS
    </h3></hr>
    <div class="row">
        <div class="col-md-6">
            <div class="form-group">
                <input type="file" name="myFile" class="form-control">
            </div>
        </div>
    </div>
    <div class="row">
        <div class="col-md-6">
            <div class="form-group">
                <input type="submit" name ="uploadBtn" class="btn btn-info">
            </div>
        </div>
    </div>
</form>
</div>
</body>

I cant figure out how to do it :/ Thanks in advanced

  • 写回答

2条回答 默认 最新

  • dougu2036 2017-11-01 20:12
    关注
        ..............
    
        $handle = fopen($fileTmpName, 'r');
        $k = 0;
        $energies = [];
        while (($myData = fgetcsv($handle,1000,',')) !== FALSE) {
          $k++;
          if ( $k > 1 ) {
                $energies[] = $myData[3];
             }
        }
    
        // 1 method
        // $values = join(',', $energies);
        // $query = "INSERT INTO metlab.table (energy1, energy2, energy3) VALUES ($values)";
    
        // 2 method
        list($e1, $e2, $e3) = $energies;
        $query = "INSERT INTO metlab.table (energy1, energy2, energy3) VALUES ($e1, $e2, $e3)";
    
        $run = mysql_query($query);
    
        ..............
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号