开发者

import through phpmyadmin

开发者 https://www.devze.com 2023-02-15 15:02 出处:网络
How do i import a csv file to开发者_运维知识库 phpmyadmin. In one column1\\2\\3.It should go with out escaping \\Without screen shots....hard...go into phpmyadmin, look for the import tab (top) and st

How do i import a csv file to开发者_运维知识库 phpmyadmin. In one column1\2\3.It should go with out escaping \


Without screen shots....hard...go into phpmyadmin, look for the import tab (top) and start play with it until you get it right.
Any way, this does not belong here, and I am pretty sure this can easily be figured out by experimenting.


in php you could do this.

this should convert the csv file into an array

$csvhead = array();
$leads = array();

if(($handle = fopen("file.csv","r"))!==FALSE){
  while(($data = fgetcsv($handle,1000,","))!==FALSE){
    $lead = array();
        if($row==1){
         $csvhead = $data;
        } else {
          foreach($csvhead as $heading) {
              $lead[$heading] = $data[array_search($heading,$csvhead)];
          }
          $leads[] = $lead;
        }

        $row++;
    }
    fclose($handle);
}

then access the array like this

foreach($leads as $lead){
    echo $lead["header name"];
}
0

精彩评论

暂无评论...
验证码 换一张
取 消