<form action="index.php" method="post" enctype="multipart/form-data">
<label for="subject1" >Subject:</label>
<input type="text" name="subject1" id="subject1">
</form>
这是我的表格。我需要获取用户在其中写入的内容,制作一个txt文件,并在该txt文件中我需要写入他输入的文本。 THX
ofc使用php
any1 ganna帮助?
答案 0 :(得分:0)
为什么不创建目录路径,然后使用编写器将内容写入特定路径
Directory.CreateDirectory(appPath);
StreamWriter writer;
writer = File.CreateText(appPath + "*.txt"); //AppendText to not overwrite the text