我正在做一个项目,我需要将包含多个字段的表单提交到多个文本文件。所以它看起来像这样。
<?php
$myfile = "data/sitetitle.txt";
if (isset($_POST['ta'])) {
$newData = nl2br(htmlspecialchars($_POST['ta']));
$handle = fopen($myfile, "w");
fwrite($handle, $newData);
fclose($handle);
}
if (file_exists($myfile)) {
$myData = file_get_contents($myfile);
}
?>
<form action="admin.php" method="post">
<textarea class="inputs" name="ta" cols="64" rows="1">
<?php echo str_replace("<br />","",$myData); ?>
</textarea>
<br /><br />
<input class="myBtn" name="myBtn" type="submit" />
</form>
这很好用,但我不能让它在多个字段上工作以分隔文本文件。
任何帮助都会非常感谢
保罗