我需要将HTML表单中的一些数据写入 data.txt 文件(txt文件具有777权限)
我使用的HTML是 index.html :
<form action="index.php" method="POST">
<input name="field1" type="text" />
<input name="field2" type="text" />
<input type="submit" name="submit" value="Save Data">
PHP文件是 index.php :
<?php
$txt = "data.txt";
if (isset($_POST['field1']) && isset($_POST['field2'])) { // check if both fields are set
$fh = fopen($txt, 'a');
$txt=$_POST['field1'].' - '.$_POST['field2'];
fwrite($fh,$txt); // Write information to the file
fclose($fh); // Close the file
}
?>
但是当我使用表单保存数据时,它会显示一个消息框来下载 index.php
我做错了什么?