tinymce不会返回写的文字

时间:2015-11-18 19:15:27

标签: php tinymce

今天我遇到了TinyMCE的问题。

我只想制作一个简单的博客系统,但它似乎没有用。

<?php
    if(isset($_POST['tinymce'])) {$content = $_POST['tinymce']; echo $content;}
    if(isset($_POST['save'])) {$content = $_POST['save']; echo $content;}

?>
    <div class="container" id="content">
        <pre><?php print_r($_POST); ?></pre>
        <form method="post" action="post.php">
            <textarea id="tinymce"></textarea>
            <input type="submit" name="save" style="color: rgba(255,255,255,0.5);background:none;border:none;" value="action">
        </form>
    </div>

这是我正在使用的代码。 我还添加了 print_r(),这是我单击ACTION按钮时的结果: enter image description here 有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

感谢@Dagon和@Ohgodwhy,我需要将 name = 标记用于工作。再次感谢! enter image description here