Agregar html_entity_decode
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
function fetch($cond)
{
$query = $this->db->query("SELECT * FROM `paginas` WHERE `cond` = '$cond'");
for($i=0; $i<$query->num_rows(); $i++)
{
$html_decoded[$i]['id'] = html_entity_decode($query->id);
$html_decoded[$i]['content'] = html_entity_decode($query->content);
}
return $html_decoded;
}