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

Popular posts from this blog

javascript - How to name a jQuery function to make a browser's back button work? -

collision detection - C++ library for mesh to mesh intersection: what is available? -

python - Django-easy-pdf: xhtml2pdf reporting reportlab 2.2+ is required, but 3.0 installed -