如何创建文本文件以保存表单数据?

时间:2012-07-23 02:27:29

标签: php html forms file

  

可能重复:
  Save PHP variables to a text file

我需要帮助才能将输入的数据输入到html表单中,并创建一个新文件,其中包含用户输入的文件名称,然后将该文本文件保存到名为forms或者其他内容的文件夹中。

1 个答案:

答案 0 :(得分:0)

$fileName = $_POST['fileName'];  //posted value of text box
$userName =$_POST['userName'];   //posted value of text box
$myFile = $fileName.".txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = $userName;
fwrite($fh, $stringData);
fclose($fh);