-2

一時テキスト ファイルを使用して、HTML Web フォーム データをデータベースに送信しています。基本的なプロセスは次のとおりです。フォーム データを送信する ==> フォーム データを temp.txt に書き込む ==> temp.txt データをデータベースに送信する。テキストファイルにデータを書き込む方法と、テキストファイルからデータを読み取る方法を知っています。テキスト ファイルを閉じた直後にデータがデータベースに書き込まれるようにするにはどうすればよいですか?

4

1 に答える 1

0

データベースにすぐに書き込めるのに、フォーム データをテキスト ファイルに書き込む意味がわかりません。最初にテキスト ファイルに書き込むと、プロセスが遅くなるだけです。

いかなる場合でも:

$data = $_POST['data']; 
// Make sure to check the data before insertion to the database!
$file = fopen('temp.txt', 'w');
fwrite($file, $data);
fclose($file);

// Write the data to the database here.

また

$data = $_POST['data']; 
// Make sure to check the data before insertion to the database!
$file = fopen('temp.txt', 'w+');
fwrite($file, $data);
// Write the data here, and save yourself from having to open the file again.
fclose($file);
于 2013-03-28T07:52:30.153 に答える