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
A simple example:
Controller
$query = $this->Listing_model->get_card($card); $query = $query->row(); $header["page_title"] = $query->title;
View