php 如何在每次提交表单时添加新的div?[关闭]

ajsxfq5m  于 2023-11-16  发布在  PHP
关注(0)|答案(1)|浏览(121)

已关闭。此问题需要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>';
}
?>

字符串

htrmnn0y

htrmnn0y1#

如果我理解了请求:

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');

    foreach ($titelArray as $index => $title) {

        echo <<<HTML
        <div>

            <h2>
                $title
            </h2>

            <p>
                {$commentArray[$index]}
            </p>

        </div>
        HTML;
    }
}

字符串
但请记住,在错误的情况下,文件的内容可能不匹配

相关问题