我想在我的服务器上保存一个文本文件,所以我使用了file_put_contents
一些标志。<input type="text" name="loaded">
我还必须从包含一些人名的字段中导入一个值。
<input type="text" name="loaded">
//other html code
<form method="post" action="scriptf.php">
<input type="submit" value="Go!" />
</form>
此脚本仅保存在 foldera/file.txt 上“Lucas Smith (lsmith334) +”,但它缺少ex
(包含该输入中的文本)。
<?php
$file = 'foldera/file.txt';
$ex = $_POST['loaded'];
$person = "Lucas Smith (lsmith334) + ".$ex;
file_put_contents($file, $person, FILE_APPEND | LOCK_EX);
?>
我究竟做错了什么?