<?php
if (isset($_POST['field1']) && isset($_POST['field2'])) { // check if both fields are set
$txt=$_POST['field1'].' - '.$_POST['field2'];
file_put_contents('test.log',$txt."\n",FILE_APPEND|LOCK_EX); // log to test.log (make sure that file is writable (permissions))
header('Location: http://www.google.com/search?q='.$txt); // google as example (use your confirmation page here)
exit();
}
?>
<form method="post" action="">
<input name="field1" type="text" />
<input name="field2" type="text" />
<input type="submit" >
</form>
好吧所以我在上一篇文章中找到了这个代码,我在我的网站上更改了输入名称,但是当我使用这个PHP脚本时,我只得到一个空白页面,我只是得到一个白页,在哪里可以找到.txt文件保存输入,我需要提交我的项目只剩下将我的数据保存在.txt文件而无法做到这一点,任何人都可以帮忙吗?