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ファイルを見つけることができる白いページが表示されます入力、プロジェクトを送信する必要があります.txtファイルにデータを保存するだけで、それを行うことができません。誰か助けてもらえますか?

4

0 に答える 0