来自数据库的Codeigniter html标签

时间:2014-04-14 14:11:36

标签: php html codeigniter

我的数据库中有表格存储html标签,如

<b>Test</b>
 description
<u>some text</u>

我可以看到标签保存在数据库中。

当我尝试检索数据时:

$this->db->select('*');
$this->db->from('collecties');
$this->db->where('id' , $id);
$query = $this->db->get();

我得到了正确的数据但没有标签。

如何从数据库中获取标签。

修改的 我读过了 : HTML tags missing when SELECT from MySQL (Codeigniter)

但我100%确定标签在数据库中,因为我用mysql workbench查看它。

0 个答案:

没有答案