我的数据库中有表格存储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查看它。