已关闭。此问题需要details or clarity。目前不接受回答。
**要改进此问题吗?**通过editing this post添加详细信息并阐明问题。
11小时前关闭
截至7小时前,社区正在审查是否重新讨论这个问题。
Improve this question的
如何回显一个完整的新div,并保留每次提交时从表单中创建的旧div?
<?php
if (isset($_POST['textTitle'],$_POST['commentText'])) {
file_put_contents("titel.txt",$_POST['textTitle']."\n",FILE_APPEND);
file_put_contents("kommentar.txt",$_POST['commentText']."\n",FILE_APPEND);
$titelArray = file("titel.txt");
$commentArray = file("kommentar.txt");
echo '<div>';
echo '<h2>';
echo $titelArray[count($titelArray)-1];
echo '</h2>';
echo '<p>';
echo $commentArray[count($commentArray)-1];
echo '</p>';
echo '</div>';
}
?>
字符串
1条答案
按热度按时间htrmnn0y1#
如果我理解了请求:
字符串
但请记住,在错误的情况下,文件的内容可能不匹配