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