PHP:將輸入資料寫入文字檔案
在PHP 中,您可以輕鬆地將資料從輸入欄位寫入文字檔案。以下是完成此任務的方法:
1. HTML 表單:
<form action="myprocessingscript.php" method="POST"> <input name="field1" type="text" /> <input name="field2" type="text" /> <input type="submit" name="submit" value="Save Data" /> </form>
2. PHP腳本:
<?php if (isset($_POST['field1']) && isset($_POST['field2'])) { // Check if both fields are set $data = $_POST['field1'] . '-' . $_POST['field2'] . "\r\n"; // Create the data $result = file_put_contents('data.txt', $data, FILE_APPEND | LOCK_EX); // Write to the file if ($result === false) { die('Error writing to file'); // Handle error } else { echo "$result bytes written to file"; // Success } } else { die('No post data to process'); // Handle error } ?>
說明:
以上是如何使用 PHP 將 HTML 表單中的資料寫入文字檔?的詳細內容。更多資訊請關注PHP中文網其他相關文章!