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

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

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

报告相同问题?

悬赏问题

  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥20 java在应用程序里获取不到扬声器设备