php ...使用文本文件将记录插入(附加)到分号表中?

时间:2015-10-01 19:06:54

标签: javascript php html

我正在使用带有分号表的文本文件...我已经学会了如何获取数据。特别抓住我需要的任何列...

<?php
$companyfile = "data/company.txt";
if (isset($_POST['company']))
{
    $newData = nl2br(htmlspecialchars($_POST['company']));
    $handle = fopen($companyfile, "w");
    fwrite($handle, $newData);
    fclose($handle);
}
// ----------------------------
if (file_exists($companyfile)) {
    $companyData = file_get_contents($companyfile);
}

但是插入更加困难,而我所能想到的就是将记录插入一个文本文件......

factory

如何组合这两个函数,以便使用html表单插入和附加消息?在这种情况下,我有一个带有一列的分号表。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

而不是fopen()fwrite()fclose()使用可以使用带有FILE_APPEND标记的包装函数file_put_contents,如此处所示

file_put_contents($file, $content, FILE_APPEND);