I am writing an application in CodeIgniter where I specify the meta-tag on every page in every controller which I have managed to send to my header te
Try this:
function get_card($card = FALSE) { $data = $this->db->get_where('creditcards', array('slug' => $card), 0,1)->result(); $data->title = $data[0]->title; return $data; }