我要的是最后一个答案

我要的是最后一个答案

本文介绍了我要的是最后一个答案的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我制作一个问题单并且希望php将其保存为.txt数据时,总是只有最后一个人的答案.
代码:

When I make a questionssheet and I want php to save it in a .txt data, there always just the answers of the last person.
Code:

if ($_GET['reason'] <>"")
{
$handle=fopen ("answer.txt", "w");
fwrite ($handle, $_GET['reason']);
fwrite ($handle, "|");
}
	else
{
	echo "Please give the reason!". "<br />";
}
?>



我忘了什么吗?
我认为问题在于,它总是会覆盖最后一个.



Did I forget something?
I think the problem is, that it always overwrite the last one.

推荐答案




这篇关于我要的是最后一个答案的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 12:18