我现在对 Jquery 有所了解,但想将文本区域保存到 txt 文件中。最终目标是能够将文本文件上传到同一个地方。我的代码中缺少什么?
不知道我在哪里定义了这段代码中的文本区域,或者它是否应该在另一个文件中,或者 html 文件是否应该有 php 的后缀?
下面的欢呼是我对 php.ini 的尝试。
代码
<?php
if(isset($_POST['submit_save'])) {
$file = "output.txt";
$output = $_POST['output_str'];
file_put_contents($file, $output);
$text = file_get_contents($file);
header("Content-type: application/text");
header("Content-Disposition: attachment; filename=\"$file\"");
echo $text;
}
else
{
$_POST['output_str'] = "";
}
?>
</head>
<body>
<input id="submit_save" type="button" value="save" />
</br></br></br>
<div id="opt"></div>
</body>
</html>