データを書き込む
データファイルの作成
- 同じディレクトリに bbs.dat を作成
- パーミッションを「666」に設定
Formの設定
<form action="" method="post">
PHP の作成
<?php $dataFile = 'bbs.dat'; if ($_SERVER['REQUEST_METHOD'] = 'POST') { $message = $_POST['message']; $user = $_POST['user']; $newData = $message . "\t" . $user . "\n"; $fp = fopen($dataFile, 'a'); fwrite($fp, $newData); fclose($fp); } ?>