在div中附加一个post请求

时间:2016-12-11 22:23:30

标签: php html

我想在发送到我的PHP文件的div中添加预先格式化的HTML。它需要保存 例如:

<div id="posts">
   <!-insert here-->
</div>   

我发送包含

的帖子请求
<article id="x">
    <h1>x</h1>
    <p>y</p>
</article>

文章ID与h1的内容匹配。这是在发送post请求之前编译的。我写了一个编译器。追加后我希望它看起来像

<div id="posts">
   <!-insert here-->
   <article id="x">
     <h1>x</h1>
     <p>y</p>
   </article>
</div>  

1 个答案:

答案 0 :(得分:0)

尝试这样的事情:

 <div id="posts">
    <?php echo '
    <article id=\"x\">
    <h1>x</h1>
    <p>y</p>
    </article>'
    ?>
</div>