我有一个代码当用户输入一个句子并按下添加文本按钮然后文本被发送到一个文件。
这是代码
<html>
<head>
<title>Write to a text file</title>
</head>
<body>
Put Cataline/page.txt furni info,
<form action="" method='post'>
<input name='textblock'></input>
<input type='submit' value='Add text'>
</form>
<?php
// Open the text file
$f = fopen("textfile.txt", "a");
// Write text
fwrite($f, $_POST["textblock"]);
// Close the text file
fclose($f);
// Open file for reading, and read the line
$f = fopen("textfile.txt", "r");
// Read text
echo fgets($f);
fclose($f);
?>
</body>
</html>
它工作正常。有一个问题。
我将用一个例子来展示它。
用户 1:哦,我可以在这里上传我的 furnidata 好的,输入 furnidata T (用户 1 的 furnidata(他想要添加的文本)被发送到文件..)(它有效)
现在user2出现了
User2:轮到我添加furni数据(与user1相同,它上传到文件并且工作正常
但
这就是代码的样子
user1furnidatatatatblahblahblahendofdatauser2furnidatablahblahblahendofdata
这就是我想要的样子
user1furnidatatatatblahblahblahendofdata
user2furnidatablahblahblahendofdata
谁能建议我实现这一目标?