1

我正在尝试通过以下代码将数据写入 csv 文件。

html

<html>
<body>
  <form action="writeToExcel.php" method="post">
    <center><h1>Personal Learning Goals Form</h1></center>
    Student ID: &nbsp;&nbsp;&nbsp;<input type="text" name="StudID" /><br/>
    Student Name: &nbsp;&nbsp; <input type="text" name="StudName" /><br/> 
    Comment 1: &nbsp;&nbsp;<input type="text" name="Com1" /><br/>
    Comment 2: &nbsp;&nbsp;<input type="text" name="Com2" /><br/> 
    Comment 3: &nbsp;&nbsp;<input type="text" name="Com3" /><br/>
    Comment 4: &nbsp;&nbsp;<input type="text" name="Com4" /><br/> 
   <input type="submit" value="Submit Form">
  </form>
</body>
</html>

我用kevin的课写数据csv.php

这是我的 php

<?php

require_once 'CSV.php';
$out_file = 'learning_goals.csv';

$csv = new CSV();

$headers = array ( // one row
  array (          // six columns
    'StudID',
    'StudName',
    'Com1',
    'Com2',
    'Com3',
    'Com4'
  )
);

if ( !is_file( $out_file ) ) {
  $csv->write_table( $headers, $out_file );
}

$data = array ( // one row
  array (       // six columns
    $_POST['StudID'],
    $_POST['StudName'],
    $_POST['Com1'],
    $_POST['Com2'],
    $_POST['Com3'],
    $_POST['Com4']
  )
);

$csv->append_table( $data );

// now you have a csv file in the same directory as this script
// you can read and edit it with excel, or also this class
// ... for demonstration purposes ...
// comment out the following for production

$table = $csv->parse_table();
print_r ( $table );

?>

我是 csv 新手,我刚刚创建了一个名为 learning_goals.csv 的 csv 文件并创建了 5 个输入"StudID", "StudName", "Com1", "Com2", "Com3", "Com4"

当我输入我的数据并推送它时,它显示

注意:未定义的属性:/opt/lampp/htdocs/data-export/CSV.php 中的 CSV::$csv_file 第 178 行无法附加到 CSV 文件

有谁知道我该如何解决这个问题?

4

1 回答 1

0

您试图附加到文件而不在构造函数或load_file(filename)函数中指定文件名。

考虑write_table(data [,filename])改用,或者如果您真的想追加,请使用加载函数。

于 2011-11-26T15:00:21.007 回答