我尝试做一些非常简单的事情:只需将字符串发送到服务器并将其另存为txt文件即可。我此刻什么都没得到 - 没有txt文件 - 没什么。我正在寻找非常简单的解决方案。这就是我所拥有的:
<script>
function submit()
{
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", "test.php?d=Hey", true);
xmlhttp.setRequestHeader("Content-Type: text/plain");
xmlhttp.send();
}
</script>
<?php
$d = $_POST["d"];
$file = fopen("test.txt", "a");
fwrite($file, $d + "\n");
fclose($file);
?>