我想让这个脚本从另一个PHP脚本接收POST,将内容(在本例中为用户名)附加到一个名为passwords.txt的文件中,该文件已存在于与此脚本相同的目录中。打印是为了检查POST是否成功(确实如此)。这是代码:
</html>
<body>
<?php
$indo=$_POST["username"];
$handle=fopen('/usr/share/phpMyAdmin/passwords.txt',"a");
print($_POST["username"]);
fwrite($handle, $indo);
fclose($handle);
?>
</body>
</html>