Agregar html_entity_decode



   AUTOR PREGUNTA

Publicado 07 octubre 2014 - 01:18

¿En CodeIgniter cómo puedo agregar el html_entity_decode a un array luego de obtener la data de este desde base de datos?


¿Tienes la misma pregunta? Yo también

 

Publicado 07 octubre 2014 - 03:59

Implementa el siguiente código en tu aplicación, modificándolo y adaptándolo a tus necesidades:

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;
}

   AUTOR PREGUNTA

Publicado 07 octubre 2014 - 04:40

Gracias Jhony, perfecto