douchuxun4162 2015-07-01 13:15
浏览 69
已采纳

Codeigniter - <textarea> </ textarea> POST更改内容

I have some problem with posting data in codeigniter. I want to make an editor for .php files and when i want to post a string like this

<?php echo $my_var; ?><p>sample text</p>

the obtained result in

$_POST['element_name']

is

<!--<?php echo $my_var; ?>--><p>sample text</p>

Why happen this? How i can obtain the original text?

Here is part of my code

HTML

<form role="form" accept-charset="utf-8" method="post" action="">
    <textarea id="editor_original"><?php echo $editor_original;?></textarea>
    <textarea name="editor" id="editor"></textarea>
    <input type="submit" value="Save" />
</form>

JAVASCRIPT

    var editor = CodeMirror.fromTextArea(document.getElementById('editor_original'), {
        lineNumbers: true,
        extraKeys: {"Ctrl-Space": "autocomplete"},
        keyMap: "sublime",
        autoCloseBrackets: true,
        matchBrackets: true,
        mode: "application/x-httpd-php",
        showCursorWhenSelecting: true,
        theme: "monokai",
        onBlur: function () { 
             editor.save();             
        }

      });
   $("#editor").val(editor.getValue());

PHP

$data = $this->page_m->array_from_post(array('editor'));
echo $data; // here output is <!--<?php echo $my_var; ?>--><p>sample text</p>


public function array_from_post($fields)
{
    $data = array();
    foreach($fields as $field)
    {
        $data[$field] = $this->input->post($field);
    }
    return $data;
}
  • 写回答

1条回答 默认 最新

  • dongsong73032 2015-07-01 14:17
    关注

    You get the right data, but, because of echo , the output is modified. Use echo htmlentities($this->input->post('editor')); to see the posted content.

    If you want to save the content, use something like this:

    write_file('out_file.php', stripslashes($this->input->post('editor')));
    

    whre write_file is

    function write_file($path, $data, $mode = FOPEN_WRITE_CREATE_DESTRUCTIVE)
        {
            if ( ! $fp = @fopen($path, $mode))
            {
                return FALSE;
            }
    
            flock($fp, LOCK_EX);
            fwrite($fp, $data);
            flock($fp, LOCK_UN);
            fclose($fp);
    
            return TRUE;
        }
    

    I hope this will help you

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀