PHP:如何将文本字段中用户输入的数据发送到txt文件?

时间:2010-05-06 10:33:51

标签: php mysql

在PHP中如何将用户在文本字段中输入的数据发送到服务器上文件夹内的txt文件。

1 个答案:

答案 0 :(得分:2)

清除文件并打开以进行书写:

$h = fopen("path and filename", "wb+");

或追加:

$h = fopen("path and filename", "ab+");

要写入文件:

fwrite($h, $myString);

然后关闭它:

fclose($h);