php - Codeigniter html tags from database -
i have tables in database wich store html tags
<b>test</b> description <u>some text</u>
i can see tags saved in database.
when try retrive data like:
$this->db->select('*'); $this->db->from('collecties'); $this->db->where('id' , $id); $query = $this->db->get();
i right data without tags.
how can tags database.
edit have read : html tags missing when select mysql (codeigniter)
but im 100% sure tags in database because view mysql workbench.
Comments
Post a Comment