CodeIgniter将html放入flashdata

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeIgniter将html放入flashdata相关的知识,希望对你有一定的参考价值。

当我把一些大数据,如html标签和消息,会话失败,我试图使用数据库,但我仍然得到相同的错误

$this->session->set_flashdata('message', '
            <p class="center">Article added successfully</p>
            <p class="center"><a href="/admin/item/add">some other message</a></p>
            ');

怎么解决这个问题?

答案

您应该删除标记之间的空格,如下所示

$this->session->set_flashdata('message', '<p class="center">Article added successfully</p><p class="center"><a href="/admin/item/add">some other message</a></p>');

以上是关于CodeIgniter将html放入flashdata的主要内容,如果未能解决你的问题,请参考以下文章

将数据库查询中的行放入 CodeIgniter 中的数组中

CodeIgniter 表单验证多语言标签

在 Codeigniter 中扩展表单验证

如何为apache服务器设置codeigniter?

将 Codeigniter 项目从主域复制到子域

CodeIgniter:将值形成模型函数