试图使用PHP代码附加一个HTML列表?

时间:2012-11-10 19:27:01

标签: php javascript html

我在html列表元素中有这个php脚本,允许用户直接从网页编辑html元素,如果变量?pw =“password”。我希望用户也能够为他们添加列表项进行编辑,有没有办法在html中使用php追加另一个列表项?我知道你可以在javascript中使用.append()...这是我正在谈论的php脚本:

 <li>
    <?php
        if ($_POST['pw']!="") {
            $pw=($_POST['pw']);
        } else {
            $pw=($_GET['pw']);
        }
        $newcontent2=($_POST['newcontent2']);
        $filelocation2 = "content/event2-1.txt";
        if (!file_exists($filelocation2)) {
            echo "Couldn't find datafile, please contact the administrator. huberwb@g.cofc.edu";
        } else {
            $newfile2 = fopen($filelocation2,"r");
            $content2 = fread($newfile2, filesize($filelocation2));
            fclose($newfile2);
        }
        $content2 = stripslashes($content2);
        $content = htmlentities($content2,ENT_HTML5);
        /*set password */   
        $pass = "password";
        if (!$pw || $pw != $pass){
            $content2 = nl2br($content2);
            echo $content2;
        } else {
            if($newcontent2){
                $newcontent2 = stripslashes($newcontent2);
                $newfile2 = fopen($filelocation2,"w");
                fwrite($newfile2, $newcontent2);
                fclose($newfile2);
                echo "Text has been edited.";
                echo "<form><input type= 'submit' value='see changes' class='button'/></form>";
            } else {
                echo "<form method='post'> <textarea name ='newcontent2' style= 'width:100px; height:20px; border: 3px solid # ccc; font-family: sans-serif; font-size:small;' cols ='auto' rows='auto' wrap='virtual'>";
                echo $content2;
                echo "</textarea>
                <input type='hidden' name='pw' value= '".$pass."' />
                <br /><input type='submit' value='edit' class='button' />
                </form>";
            }
        }
    ?>
</li>

1 个答案:

答案 0 :(得分:0)

当页面加载时,PHP将呈现为服务器端。

用户的更改,即列表中的新项目只能由PHP添加新请求。这可以通过多种方式完成,即完整页面刷新,其中表单发送请求,页面重新加载新列表条目。或者您可以使用JavaScript / jQuery将表单发送给PHP,然后将一些html返回到append()到列表中。

希望有所帮助。