Skip to content
Advertisement

How to fetch title of an item from a database and send it to the header template in CodeIgniter

I am writing an application in CodeIgniter where I specify the <title> meta-tag on every page in every controller which I have managed to send to my header template. However, now I have created an application that fetch credit cards and their titles from the database, through an CodeIgniter model. I would like to automatically fetch and use the credit card’s name in <title> so that i don’t need to change it manually, but I’m a little stuck on how to proceed.

This is my code as of now:

Controller

JavaScript

Model

JavaScript

I have been following the official CodeIgniter documentation when creating this application, but so far no luck. Any solutions?

Advertisement

Answer

Try this

  1. Model is changed
  2. Controller is changed.

In Model

JavaScript

In Controller

JavaScript

In View

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement