0
<?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 文件中并且无法做到这一点,有人可以帮忙吗?

4

0 回答 0