我有三个文本区域,我想要::::
如果我将一些数据输入文本区域并按下提交按钮,那么它会将该textarea的数据输入到csv文件中。
请帮助......
答案 0 :(得分:1)
<?php
$list = arrary();
//your array will have all the fields from the form, textfields and textareas
$fp = fopen('output.csv', 'w');
foreach ($list as $fields) {
fputcsv($fp, $fields);
}
fclose($fp);
?>
答案 1 :(得分:0)
$ fp = fopen('file.csv','w'); fputcsv($ fp,$ _GET ['TextArea']); FCLOSE($ FP);
&GT?;