我想知道如何让用户在 textarea 中输入一些文本,然后当他按下保存按钮时,他输入的文本会保存在文件中,这是我的代码:
<?php
header("location: add/Project.html" );
$handle = fopen("Project.html", "a");
foreach($_POST as $value) {
fwrite($handle, $value);
}
fclose($handle);
exit;
?>
此代码有效,但<input>
唯一的例子是我的 html 代码:
<form action="add.php" method="post">
<textarea type="text" name="code" id="code" value="" ></textarea>
<input type="text" name="code" id="code" value="" /><input value="Submit" tabindex="4" type="submit" >
</form>
它只会输出写在<input>
Can you help me please 中的文本!