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

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

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