Buenas,
En mi html tengo
Código HTML:
Ver original<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Mi BD esta en UTF-8 general ci, y necesito trabajar con html en mi base de datos con php.
Investigando, encontre que:
Transforma HTML a UTF-8
Código PHP:
htmlentities($this->post, ENT_QUOTES, "UTF-8");
Transforma UTF-8 a HTML
Código PHP:
utf8_encode(html_entity_decode($value->post));
Pero no hace bien la transformación y sigo con el problema...
S2